Skip to content

Commit 0f02431

Browse files
author
Cosimo Lupo
committed
setup.py: exclude versions of setuptools_scm due to pypa/setuptools-scm#109
since setuptools_scm 1.13.1, untracked files cause a dirty state; this makes auto deployment to PyPI fail where it worked before. The issue has been fixed, but the new version of setuptools_scm has not been published yet. So here we exclude the last two versions where this issue occurs.
1 parent ec316a4 commit 0f02431

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
@@ -21,7 +21,7 @@
2121
package_dir={"": "Lib"},
2222
packages=find_packages("Lib"),
2323
setup_requires=[
24-
"setuptools_scm>=1.11.1",
24+
"setuptools_scm>=1.11.1,!=1.13.1,!=1.14.0",
2525
] + pytest_runner + wheel,
2626
tests_require=[
2727
'pytest>=3.0.2',

0 commit comments

Comments
 (0)