Skip to content

Commit

Permalink
Handle version-specific dependencies w/ PEP 508
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoegl committed Dec 31, 2017
1 parent 637f0c7 commit 1f4dc2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ python:
- pypy3
install:
- travis_retry pip install -r requirements.txt
- travis_retry pip install -r requirements-dev.txt
- travis_retry pip install coveralls
- if [ "$TRAVIS_PYTHON_VERSION" != "3.3" ]; then travis_retry pip install hypothesis; fi
script:
Expand All @@ -23,8 +24,6 @@ addons:
apt:
packages:
- pandoc
before_deploy:
- pip install -r requirements-dev.txt
deploy:
provider: pypi
user: skoegl
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
wheel
pypandoc
hypothesis >= 3
hypothesis>=3; python_version=="2.7" or python_version>"3.3"

0 comments on commit 1f4dc2a

Please sign in to comment.