Fix installing pysaml2 on Python 3.5. (#8898)

This pins pysaml2 to < 6.4.0 on Python 3.5, as the last known working version.
release-v1.24.0
Patrick Cloke 2020-12-08 13:41:25 -05:00 committed by GitHub
parent 2602514f34
commit 1a9553045c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

1
changelog.d/8898.misc Normal file
View File

@ -0,0 +1 @@
Add a maximum version for pysaml2 on Python 3.5.

View File

@ -96,7 +96,11 @@ CONDITIONAL_REQUIREMENTS = {
# python 3.5.2, as per https://github.com/itamarst/eliot/issues/418
'eliot<1.8.0;python_version<"3.5.3"',
],
"saml2": ["pysaml2>=4.5.0"],
"saml2": [
# pysaml2 6.4.0 is incompatible with Python 3.5 (see https://github.com/IdentityPython/pysaml2/issues/749)
"pysaml2>=4.5.0,<6.4.0;python_version<'3.6'",
"pysaml2>=4.5.0;python_version>='3.6'",
],
"oidc": ["authlib>=0.14.0"],
"systemd": ["systemd-python>=231"],
"url_preview": ["lxml>=3.5.0"],