diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-23 12:01:44 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-23 12:01:44 -0500 |
commit | 094862cd6c1683b6a861e8824a96ef74dfd1a8d0 (patch) | |
tree | fc1504f860103a27c47a9a121720140f4c8b89b9 | |
parent | 97372c1341b79f6d78d823868a1bad9170eb13c3 (diff) | |
download | python-setuptools-git-094862cd6c1683b6a861e8824a96ef74dfd1a8d0.tar.gz |
Try installing requirements before deploying (because the requirements that tox installed aren't available to the Python that Travis PyPI uses for deployment). Ref #934.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index c30878cd..7affc0a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,8 @@ script: - tox +before_deploy: + - pip install -r requirements.txt deploy: provider: pypi # Also update server in setup.cfg |