Skip to content

Commit c495b58

Browse files
author
Roland Hedberg
committed
Supporting Python 3.4 (which is imminent) means we will stop supporting 2.6 .
1 parent afca69c commit c495b58

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def run_tests(self):
5353

5454
setup(
5555
name='pysaml2',
56-
version='2.5.0',
56+
version='3.0.0',
5757
description='Python implementation of SAML Version 2',
5858
# long_description = read("README"),
5959
author='Roland Hedberg',
@@ -72,7 +72,6 @@ def run_tests(self):
7272
"Development Status :: 4 - Beta",
7373
"License :: OSI Approved :: Apache Software License",
7474
"Topic :: Software Development :: Libraries :: Python Modules",
75-
"Programming Language :: Python :: 2.6",
7675
"Programming Language :: Python :: 2.7"],
7776

7877
scripts=["tools/parse_xsd2.py", "tools/make_metadata.py",

tests/test_37_entity_categories.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ def test_idp_policy_filter():
158158
"norEduPersonNIN": "19800101134"}
159159

160160
policy = idp.config.getattr("policy", "idp")
161-
ava = policy.filter(ava, "urn:mace:example.com:saml:roland:sp", idp.metadata)
161+
ava = policy.filter(ava, "urn:mace:example.com:saml:roland:sp",
162+
idp.metadata)
162163

163164
print(ava)
164165
assert list(ava.keys()) == ["eduPersonTargetedID"] # because no entity category

0 commit comments

Comments
 (0)