File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
4
- UNRELEASED
4
+ 0.17.0 (2018-07-16)
5
5
----------
6
6
- A 403 (permission denied) is now raised if a SAMLResponse is replayed, instead of 500.
7
+ - Dropped support for Python 3.3
8
+ - Upgraded pysaml2 dependency to version 4.5.0
9
+
10
+ Thanks to francoisfreitag, mhindery, vkurup, peppelinux
7
11
8
12
0.16.11 (2017-12-25)
9
13
----------
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.0 ' ,
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,7 +70,6 @@ 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
73
'pysaml2==4.5.0' ,
76
74
],
77
75
extras_require = extra ,
You can’t perform that action at this time.
0 commit comments