Skip to content
Snippets Groups Projects
Commit 6f887a97 authored by Denny Biasiolli's avatar Denny Biasiolli Committed by Christophe Monniez
Browse files

[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: default avatarChristophe Monniez (moc) <moc@odoo.com>
parent 4cc757e9
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment