Fix error. EXTRAS_REQUIRE is dictionary not a list.

python3android
Ushkovsky Stanislav 5 years ago
parent 0e63392ee3
commit b84ff9b3b0
No known key found for this signature in database
GPG Key ID: 39448CF07129729D

@ -22,7 +22,7 @@ try:
from setup import EXTRAS_REQUIRE
except ImportError:
HAVE_SETUPTOOLS = False
EXTRAS_REQUIRE = []
EXTRAS_REQUIRE = {}
from importlib import import_module

Loading…
Cancel
Save