We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c28695e commit 6ba0adaCopy full SHA for 6ba0ada
djangosaml2/middleware.py
@@ -9,7 +9,7 @@
9
from django.utils.http import http_date
10
11
12
-SAMESITE_NONE = None if (VERSION[0] < 3) else 'None'
+SAMESITE_NONE = None if (VERSION[0] < 3.1) else 'None'
13
14
15
class SamlSessionMiddleware(SessionMiddleware):
setup.py
@@ -24,7 +24,7 @@ def read(*rnames):
24
25
setup(
26
name='djangosaml2',
27
- version='1.1.3',
+ version='1.1.4',
28
description='pysaml2 integration for Django',
29
long_description=read('README.md'),
30
long_description_content_type='text/markdown',
0 commit comments