changeset 8f166510fec3 in proteus:5.0
details: https://hg.tryton.org/proteus?cmd=changeset&node=8f166510fec3
description:
Limit version of defusedxml that still supports python 3.4
diffstat:
setup.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diffs (13 lines):
diff -r 16d55e3ad47a -r 8f166510fec3 setup.py
--- a/setup.py Tue Mar 01 19:23:46 2022 +0100
+++ b/setup.py Wed Mar 02 00:49:23 2022 +0100
@@ -77,7 +77,8 @@
license='LGPL-3',
python_requires='>=3.4',
install_requires=[
- 'defusedxml',
+ 'defusedxml; python_version != "3.4"',
+ 'defusedxml < 0.6; python_version == "3.4"',
"python-dateutil",
],
extras_require={