-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] requirements: update library versions to match Debian Buster
Some library versions are outdated since the release of Debian Buster. With this commit the required libraries versions will match as close as possible the versions available in the current Debian stable release (Buster). Also, the requirements were tested against a Windows Python 3.7 to ensure that a "pip install -r" can be used without the need of a CPP compiler. As Babel format_time now returns 'HNE' (Heure Normale de l'EST) for Fr locale instead of the zone offset, the test is adapted. Finally the babel.dates is explicitely imported, otherwise the proper import of this submodule is relying on a side effect. closes odoo#43106 X-original-commit: 32e455b Signed-off-by: Christophe Monniez (moc) <[email protected]>
- Loading branch information
Showing
7 changed files
with
34 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
import babel | ||
import babel.dates | ||
|
||
from datetime import datetime, timedelta, time | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,48 @@ | ||
Babel==2.3.4 | ||
Babel==2.6.0 | ||
chardet==3.0.4 | ||
decorator==4.0.10 | ||
docutils==0.12 | ||
decorator==4.3.0 | ||
docutils==0.14 | ||
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' | ||
gevent==1.3.7 ; sys_platform != 'win32' and python_version >= '3.7' | ||
gevent==1.4.0 ; sys_platform == 'win32' | ||
greenlet==0.4.10 ; python_version < '3.7' | ||
greenlet==0.4.13 ; python_version >= '3.7' | ||
html2text==2016.9.19 | ||
greenlet==0.4.15 ; python_version >= '3.7' | ||
html2text==2018.1.9 | ||
Jinja2==2.10.1 | ||
libsass==0.12.3 | ||
libsass==0.17.0 | ||
lxml==3.7.1 ; sys_platform != 'win32' and python_version < '3.7' | ||
lxml==4.2.3 ; sys_platform != 'win32' and python_version >= '3.7' | ||
lxml==4.3.2 ; sys_platform != 'win32' and python_version >= '3.7' | ||
lxml ; sys_platform == 'win32' | ||
Mako==1.0.4 | ||
MarkupSafe==0.23 | ||
Mako==1.0.7 | ||
MarkupSafe==1.1.0 | ||
mock==2.0.0 | ||
num2words==0.5.6 | ||
ofxparse==0.16 | ||
passlib==1.6.5 | ||
ofxparse==0.19 | ||
passlib==1.7.1 | ||
Pillow==5.4.1 ; python_version < '3.7' or sys_platform != 'win32' | ||
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' | ||
psutil==5.5.1 | ||
psycopg2==2.7.7; sys_platform != 'win32' | ||
psycopg2==2.8.3; sys_platform == 'win32' | ||
pydot==1.2.3 | ||
pydot==1.4.1 | ||
pyldap==2.4.28; sys_platform != 'win32' | ||
pyparsing==2.1.10 | ||
pyparsing==2.2.0 | ||
PyPDF2==1.26.0 | ||
pyserial==3.1.1 | ||
python-dateutil==2.5.3 | ||
pytz==2016.7 | ||
pyusb==1.0.0 | ||
qrcode==5.3 | ||
reportlab==3.3.0 | ||
requests==2.20.0 | ||
zeep==3.1.0 | ||
pyserial==3.4 | ||
python-dateutil==2.7.3 | ||
pytz==2019.1 | ||
pyusb==1.0.2 | ||
qrcode==6.1 | ||
reportlab==3.5.13 | ||
requests==2.21.0 | ||
zeep==3.2.0 | ||
vatnumber==1.2 | ||
vobject==0.9.3 | ||
vobject==0.9.6.1 | ||
Werkzeug==0.14.1 | ||
XlsxWriter==0.9.3 | ||
XlsxWriter==1.1.2 | ||
xlwt==1.3.* | ||
xlrd==1.0.0 | ||
xlrd==1.1.0 | ||
pypiwin32 ; sys_platform == 'win32' |