Skip to content

Commit 876b811

Browse files
Merge pull request #170 from c00kiemon5ter/feature-pysaml2-upgrade
Upgrade pysaml2 from version 4.4.0 to version 4.5.0
2 parents 5820b8b + ff4e744 commit 876b811

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package_dir={'': 'src'},
1717
install_requires=[
1818
"pyop==2.0.5",
19-
"pysaml2==4.4.0",
19+
"pysaml2==4.5.0",
2020
"pycryptodomex",
2121
"requests",
2222
"PyYAML",

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ def sp_conf(cert_and_key):
4949
],
5050
"discovery_response": [("%s/disco" % sp_base, BINDING_DISCO)]
5151
},
52-
"allow_unsolicited": "true",
52+
"want_response_signed": False,
53+
"allow_unsolicited": True,
5354
"name_id_format": [NAMEID_FORMAT_PERSISTENT]
5455
},
5556
},
@@ -259,6 +260,7 @@ def saml_backend_config(idp_conf):
259260
],
260261
"service": {
261262
"sp": {
263+
"want_response_signed": False,
262264
"allow_unsolicited": True,
263265
"endpoints": {
264266
"assertion_consumer_service": [

0 commit comments

Comments
 (0)