-
- Downloads
[FIX] requirements: add compatibility with win32/python-3.7
- adding gevent for win32 and python >= 3.7 - improving Pillow selection in different python versions - adding psutil installation for win32 - adding psycopg2 installation for win32 closes odoo/odoo#38428 X-original-commit: 1c399220 Signed-off-by:Christophe Monniez (moc) <moc@odoo.com>
... | ... | @@ -6,6 +6,7 @@ ebaysdk==2.1.5 |
feedparser==5.2.1 | ||
gevent==1.1.2 ; sys_platform != 'win32' and python_version < '3.7' | ||
gevent==1.3.4 ; sys_platform != 'win32' and python_version >= '3.7' | ||
gevent==1.4.0 ; sys_platform == 'win32' and python_version >= '3.7' | ||
greenlet==0.4.10 ; python_version < '3.7' | ||
greenlet==0.4.13 ; python_version >= '3.7' | ||
html2text==2016.9.19 | ||
... | ... | @@ -20,10 +21,13 @@ mock==2.0.0 |
num2words==0.5.6 | ||
ofxparse==0.16 | ||
passlib==1.6.5 | ||
Pillow==5.4.0 | ||
Pillow==5.4.1 | ||
Pillow==6.1.0 ; sys_platform == 'win32' and python_version >= '3.7' | ||
polib==1.1.0 | ||
psutil==4.3.1; sys_platform != 'win32' | ||
psutil==5.6.3; sys_platform == 'win32' | ||
psycopg2==2.7.3.1; sys_platform != 'win32' | ||
psycopg2==2.8.3; sys_platform == 'win32' | ||
pydot==1.2.3 | ||
pyldap==2.4.28; sys_platform != 'win32' | ||
pyparsing==2.1.10 | ||
... | ... |
Please register or sign in to comment