File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
4
- UNRELEASED
4
+ 0.17.2 (2018-08-29)
5
+ ----------
6
+ - Upgraded pysaml2 dependency to version 4.6.0 which fixes security issue.
7
+
8
+ Thanks to plumdog
9
+
10
+ 0.17.1 (2018-07-16)
5
11
----------
6
12
- A 403 (permission denied) is now raised if a SAMLResponse is replayed, instead of 500.
13
+ - Dropped support for Python 3.3
14
+ - Upgraded pysaml2 dependency to version 4.5.0
15
+
16
+ Thanks to francoisfreitag, mhindery, vkurup, peppelinux
7
17
8
18
0.16.11 (2017-12-25)
9
19
----------
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def read(*rnames):
31
31
32
32
setup (
33
33
name = 'djangosaml2' ,
34
- version = '0.16.11 ' ,
34
+ version = '0.17.2 ' ,
35
35
description = 'pysaml2 integration for Django' ,
36
36
long_description = '\n \n ' .join ([read ('README.rst' ), read ('CHANGES' )]),
37
37
classifiers = [
@@ -49,7 +49,6 @@ def read(*rnames):
49
49
"Programming Language :: Python :: 2" ,
50
50
"Programming Language :: Python :: 2.7" ,
51
51
"Programming Language :: Python :: 3" ,
52
- "Programming Language :: Python :: 3.3" ,
53
52
"Programming Language :: Python :: 3.4" ,
54
53
"Programming Language :: Python :: 3.5" ,
55
54
"Programming Language :: Python :: 3.6" ,
@@ -71,8 +70,7 @@ def read(*rnames):
71
70
install_requires = [
72
71
'defusedxml>=0.4.1' ,
73
72
'Django>=1.8' ,
74
- 'enum34;python_version > "3" and python_version < "3.4"' ,
75
- 'pysaml2==4.5.0' ,
73
+ 'pysaml2>=4.6.0' ,
76
74
],
77
75
extras_require = extra ,
78
76
)
You can’t perform that action at this time.
0 commit comments