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 1d89ec3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ 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:
- coverage run --source=jsonpointer tests.py
after_script:
Expand All @@ -23,8 +23,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 1d89ec3

Please sign in to comment.