Skip to content

Commit

Permalink
Fix package dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Apr 21, 2018
1 parent f6f7afd commit 8561799
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def need_pytest():
docs_requires = [line.strip() for line in f if line.strip()]


SETUPTOOLS_REQUIRES = ["setuptools>=20.2.2"]
SETUPTOOLS_REQUIRES = ["setuptools>=20.2.2", "releasecmd"]
PYTEST_RUNNER_REQUIRES = ["pytest-runner"] if need_pytest() else []

setuptools.setup(
Expand All @@ -69,7 +69,7 @@ def need_pytest():
},

install_requires=SETUPTOOLS_REQUIRES + install_requires,
setup_requires=SETUPTOOLS_REQUIRES + ["releasecmd"] + PYTEST_RUNNER_REQUIRES,
setup_requires=SETUPTOOLS_REQUIRES + PYTEST_RUNNER_REQUIRES,
tests_require=tests_requires,
extras_require={
"test": tests_requires,
Expand Down

0 comments on commit 8561799

Please sign in to comment.