Skip to content

Commit

Permalink
setup.py: exclude versions of setuptools_scm due to pypa/setuptools-s…
Browse files Browse the repository at this point in the history
…cm#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.
  • Loading branch information
Cosimo Lupo committed Oct 18, 2016
1 parent ec316a4 commit 0f02431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
package_dir={"": "Lib"},
packages=find_packages("Lib"),
setup_requires=[
"setuptools_scm>=1.11.1",
"setuptools_scm>=1.11.1,!=1.13.1,!=1.14.0",
] + pytest_runner + wheel,
tests_require=[
'pytest>=3.0.2',
Expand Down

0 comments on commit 0f02431

Please sign in to comment.