Skip to content

Commit

Permalink
Use stricter version ranges for pbr and setuptools_scm
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Wilhelm authored and Florian Wilhelm committed Jul 3, 2015
1 parent d39dd10 commit 850cf24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyscaffold/data/setup_py.template
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ from setuptools import setup
def setup_package():
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
setup(setup_requires=['six', 'PyScaffold>=2.3rc1'] + pytest_runner,
setup(setup_requires=['six', 'PyScaffold>=2.3rc1,<2.4'] + pytest_runner,
tests_require=['pytest_cov', 'pytest'],
use_pyscaffold=True)

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
six
setuptools>=9.0
pbr
setuptools_scm
pbr>=1.2,<1.3
setuptools_scm>=1.5,<1.6

0 comments on commit 850cf24

Please sign in to comment.