Skip to content

Commit 803f2d6

Browse files
committed
Fix call and classifiers.
1 parent 16db739 commit 803f2d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def read(*names, **kwargs):
6767
class BinaryDistribution(Distribution):
6868
"""Distribution which almost always forces a binary package with platform name"""
6969
def has_ext_modules(self):
70-
return super.has_ext_modules() or os.environ.get('SETUPPY_ALLOW_PURE')
70+
return super().has_ext_modules() or os.environ.get('SETUPPY_ALLOW_PURE')
7171

7272

7373
setup(
@@ -100,7 +100,7 @@ def has_ext_modules(self):
100100
'Operating System :: POSIX',
101101
'Operating System :: Microsoft :: Windows',
102102
'Programming Language :: Python',
103-
'Programming Language :: Python :: 3',
103+
'Programming Language :: Python :: 3 :: Only',
104104
'Programming Language :: Python :: 3.6',
105105
'Programming Language :: Python :: 3.7',
106106
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)