Skip to content

Commit

Permalink
setup.py - don't depend on pytest (#36)
Browse files Browse the repository at this point in the history
Installing currently causes `pytest` and `pytest-rerunfailures` to be unnecessarily installed which is a pain for environments or people that don't use `pytest` for tests. Fix that.
  • Loading branch information
adamchainz authored and menegazzo committed Oct 10, 2016
1 parent 3bdbf9b commit fecb2de
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 @@ -29,7 +29,7 @@ def run_tests(self):
name='TravisPy',
version='0.3.5',
packages=['travispy', 'travispy.entities'],
install_requires=[x.strip() for x in open('requirements.txt')],
install_requires=['requests'],

# metadata for upload to PyPI
author='Fabio Menegazzo',
Expand Down

0 comments on commit fecb2de

Please sign in to comment.