Another attempt to fix the Python 2.6 deps.
parent
33890da57e
commit
a95775ae49
|
@ -92,17 +92,21 @@ setup(
|
||||||
"psycopg2==2.7.3.2",
|
"psycopg2==2.7.3.2",
|
||||||
"pycrypto==2.6.1",
|
"pycrypto==2.6.1",
|
||||||
"python-dateutil==2.5.0",
|
"python-dateutil==2.5.0",
|
||||||
"SQLAlchemy==1.0.14"
|
"SQLAlchemy==1.0.14",
|
||||||
|
"Flask-Security==1.7.5",
|
||||||
|
"Flask-BabelEx==0.9.3"
|
||||||
],
|
],
|
||||||
":python_version<='2.7'": [
|
":python_version<='2.7'": [
|
||||||
"backports.csv", "importlib"
|
"backports.csv",
|
||||||
|
"importlib"
|
||||||
],
|
],
|
||||||
":python_version>='2.7'": [
|
":python_version>='2.7'": [
|
||||||
"Flask-HTMLmin",
|
"Flask-HTMLmin",
|
||||||
"psycopg2>=2.7.3.2",
|
"psycopg2>=2.7.3.2",
|
||||||
"pycryptodome",
|
"pycryptodome",
|
||||||
"python-dateutil>=2.7.1",
|
"python-dateutil>=2.7.1",
|
||||||
"SQLAlchemy>=1.2.5"
|
"SQLAlchemy>=1.2.5",
|
||||||
|
"Flask-Security>=3.0.0"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ pycryptodome; python_version >= '2.7'
|
||||||
python-dateutil>=2.7.1; python_version >= '2.7'
|
python-dateutil>=2.7.1; python_version >= '2.7'
|
||||||
Flask-HTMLmin==1.3.2; python_version >= '2.7'
|
Flask-HTMLmin==1.3.2; python_version >= '2.7'
|
||||||
SQLAlchemy>=1.2.5; python_version >= '2.7'
|
SQLAlchemy>=1.2.5; python_version >= '2.7'
|
||||||
|
Flask-Security>=3.0.0; python_version >= '2.7'
|
||||||
|
|
||||||
###############################################################
|
###############################################################
|
||||||
# Modules specifically required for Python2.7 or lesser version
|
# Modules specifically required for Python2.7 or lesser version
|
||||||
|
@ -53,3 +54,6 @@ Flask-Script==2.0.5; python_version < '2.7'
|
||||||
ordereddict; python_version < '2.7'
|
ordereddict; python_version < '2.7'
|
||||||
python-dateutil==2.5.0; python_version < '2.7'
|
python-dateutil==2.5.0; python_version < '2.7'
|
||||||
SQLAlchemy==1.0.14; python_version < '2.7'
|
SQLAlchemy==1.0.14; python_version < '2.7'
|
||||||
|
SQLAlchemy==1.0.14; python_version < '2.7'
|
||||||
|
Flask-Security==1.7.5; python_version < '2.7'
|
||||||
|
Flask-BabelEx==0.9.3; python_version < '2.7'
|
||||||
|
|
Loading…
Reference in New Issue