Skip to content

Commit bb1f590

Browse files
authored
Merge pull request #1 from knaperek/master
Merge
2 parents 9e4cadd + 5561d11 commit bb1f590

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

CHANGES

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
Changes
22
=======
33

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)
511
----------
612
- 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
717

818
0.16.11 (2017-12-25)
919
----------

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def read(*rnames):
3131

3232
setup(
3333
name='djangosaml2',
34-
version='0.16.11',
34+
version='0.17.2',
3535
description='pysaml2 integration for Django',
3636
long_description='\n\n'.join([read('README.rst'), read('CHANGES')]),
3737
classifiers=[
@@ -49,7 +49,6 @@ def read(*rnames):
4949
"Programming Language :: Python :: 2",
5050
"Programming Language :: Python :: 2.7",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.3",
5352
"Programming Language :: Python :: 3.4",
5453
"Programming Language :: Python :: 3.5",
5554
"Programming Language :: Python :: 3.6",
@@ -71,8 +70,7 @@ def read(*rnames):
7170
install_requires=[
7271
'defusedxml>=0.4.1',
7372
'Django>=1.8',
74-
'enum34;python_version > "3" and python_version < "3.4"',
75-
'pysaml2==4.5.0',
73+
'pysaml2>=4.6.0',
7674
],
7775
extras_require=extra,
7876
)

0 commit comments

Comments
 (0)