Commit be2bf5b3 authored by Jérome Perrin's avatar Jérome Perrin

Release 1.7.1

Fix a missing dependency in 1.7.0 on python2
parent a515ca89
Pipeline #18750 failed with stage
in 0 seconds
Changes Changes
======= =======
1.7.1 (2021-12-10)
------------------
* Fix a missing dependency in 1.7.0 on python2
1.7.0 (2021-12-10) 1.7.0 (2021-12-10)
------------------- ------------------
* prune: add support for new name of signature files * prune: add support for new name of signature files
* slapproxy: Fix software URL migration * slapproxy: Fix software URL migration
......
...@@ -78,6 +78,7 @@ setup(name=name, ...@@ -78,6 +78,7 @@ setup(name=name,
'PyYAML', 'PyYAML',
'uritemplate', # used by hateoas navigator 'uritemplate', # used by hateoas navigator
'subprocess32; python_version<"3"', 'subprocess32; python_version<"3"',
'enum34; python_version<"3"',
'ipaddress; python_version<"3"', # used by whitelistfirewall 'ipaddress; python_version<"3"', # used by whitelistfirewall
] + additional_install_requires, ] + additional_install_requires,
extras_require=extras_require, extras_require=extras_require,
......
...@@ -26,4 +26,4 @@ ...@@ -26,4 +26,4 @@
# #
############################################################################## ##############################################################################
version = '1.7.0' version = '1.7.1'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment