Skip to content

Commit d8f1161

Browse files
authored
Update dependencies (grafana#170)
* Fix type hint * Update all dependencies * Downgrade (and pin) flake8 version * Downgrade (and pin) pysaml2 version to maximize compatibility between Python versions
1 parent 6b82bb9 commit d8f1161

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

django_saml2_auth/saml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def get_metadata(user_id: Optional[str] = None) -> Mapping[str, Any]:
138138

139139
def get_saml_client(domain: str,
140140
acs: Callable[..., HttpResponse],
141-
user_id: str = None,
141+
user_id: Optional[str] = None,
142142
saml_response: Optional[str] = None) -> Optional[Saml2Client]:
143143
"""Create a new Saml2Config object with the given config and return an initialized Saml2Client
144144
using the config object. The settings are read from django settings key: SAML2_AUTH.

requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pysaml2==7.2.1
2-
PyJWT==2.6.0
3-
dictor==0.1.10
4-
setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability
1+
pysaml2==7.3.0
2+
PyJWT==2.7.0
3+
dictor==0.1.11
4+
setuptools>=67.8.0

requirements_test.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
pytest==7.2.0
1+
pytest==7.3.1
22
pytest-django==4.5.2
3-
responses==0.22.0
4-
mypy==0.982
3+
responses==0.23.1
4+
mypy==1.3.0
55
flake8==5.0.4
6-
django-stubs==1.13.1
7-
types-pysaml2==1.0.0
8-
types-setuptools==65.6.0.3
6+
django-stubs==4.2.0
7+
types-pysaml2==1.0.1
8+
types-setuptools==67.8.0.0
99
types-pkg-resources==0.1.3
1010
interrogate==1.5.0
11-
coverage==6.5.0
12-
cyclonedx-bom==3.10.1
11+
coverage==7.2.6
12+
cyclonedx-bom==3.11.0

0 commit comments

Comments
 (0)