Skip to content

Commit

Permalink
Fix call and classifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Dec 15, 2021
1 parent 16db739 commit 803f2d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def read(*names, **kwargs):
class BinaryDistribution(Distribution):
"""Distribution which almost always forces a binary package with platform name"""
def has_ext_modules(self):
return super.has_ext_modules() or os.environ.get('SETUPPY_ALLOW_PURE')
return super().has_ext_modules() or os.environ.get('SETUPPY_ALLOW_PURE')


setup(
Expand Down Expand Up @@ -100,7 +100,7 @@ def has_ext_modules(self):
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit 803f2d6

Please sign in to comment.