Skip to content

Commit 71b7267

Browse files
committed
Problem: #74 setuptools on a locale='C' host can't parse cfg
Solution: Fixed in setuptools==40.7.0 updated setup.py to make that a minumum requirement. Upstream bug: pypa/setuptools#1062
1 parent 82ffd94 commit 71b7267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'local_scheme': 'dirty-tag'
4747
},
4848
setup_requires=[
49-
'setuptools >= 36.2.7',
49+
'setuptools >= 40.7.0',
5050
'setuptools_scm >= 1.7.0'
5151
],
5252
**kwargs

0 commit comments

Comments
 (0)