Skip to content

Commit 8e9102b

Browse files
hugovkiMichka
authored andcommitted
Add classifiers
1 parent 1ed25bd commit 8e9102b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@
3333
"Operating System :: Microsoft :: Windows",
3434
"Operating System :: POSIX",
3535
"Programming Language :: Python",
36+
"Programming Language :: Python :: 2",
37+
"Programming Language :: Python :: 2.7",
38+
"Programming Language :: Python :: 3",
39+
"Programming Language :: Python :: 3.3",
40+
"Programming Language :: Python :: 3.4",
41+
"Programming Language :: Python :: 3.5",
42+
"Programming Language :: Python :: 3.6",
43+
"Programming Language :: Python :: Implementation :: CPython",
44+
"Programming Language :: Python :: Implementation :: PyPy",
3645
"Topic :: Software Development",
3746
],
3847
)

unittests/test_hash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_types_hashes(self):
2525
2626
"""
2727

28-
if sys.version_info[:2] <= (2, 7):
28+
if sys.version_info[:2] == (2, 7):
2929
# _create_type_t_mockup calls inspect.signature, which does not
3030
# exist for legacy Python
3131
return

0 commit comments

Comments
 (0)