Skip to content

Commit

Permalink
setup.py: Require setuptools 36.2.7
Browse files Browse the repository at this point in the history
If the wheel is generated with older setuptools it will have incorrect
requirements for Python 3, since some of the requirements use
environment markers and there was a problem with those in older versions
of the setuptools.

See pypa/setuptools#1081 and
pypa/setuptools#1108 for details.
  • Loading branch information
suutari committed Aug 2, 2017
1 parent 71d418c commit 8f469b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,5 +2,5 @@

if __name__ == '__main__':
setuptools.setup(
setup_requires=['setuptools>=34.0', 'setuptools-gitver'],
setup_requires=['setuptools>=36.2.7', 'setuptools-gitver'],
gitver=True)

0 comments on commit 8f469b6

Please sign in to comment.