changeset 2131637cf29e in trytond:5.0
details: https://hg.tryton.org/trytond?cmd=changeset&node=2131637cf29e
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 30d7df39b861 -r 2131637cf29e setup.py
--- a/setup.py Tue Mar 01 19:22:41 2022 +0100
+++ b/setup.py Wed Mar 02 00:49:23 2022 +0100
@@ -101,7 +101,8 @@
license='GPL-3',
python_requires='>=3.4',
install_requires=[
- 'defusedxml',
+ 'defusedxml; python_version != "3.4"',
+ 'defusedxml < 0.6; python_version == "3.4"',
'lxml >= 2.0; python_version != "3.4"',
'lxml >=2.0, < 4.4; python_version == "3.4"',
'relatorio[fodt] >= 0.7.0',