aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2017-09-30 23:19:02 +0000
committerMike Crute <mike@crute.us>2017-09-30 23:19:02 +0000
commit5ba28244b68fcb8b375a86046545b7bd352050e4 (patch)
tree9101ad7310654370214bdec36055653b87ca9e61
parente95fc583f7670cbe633537c1a89b6a33265830d1 (diff)
downloadpydora-5ba28244b68fcb8b375a86046545b7bd352050e4.tar.bz2
pydora-5ba28244b68fcb8b375a86046545b7bd352050e4.tar.xz
pydora-5ba28244b68fcb8b375a86046545b7bd352050e4.zip
Install cryptography with pip on travis
-rw-r--r--.travis.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 31b9da7..d792753 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,10 @@ python:
5 - "3.4" 5 - "3.4"
6 - "3.5" 6 - "3.5"
7 - "3.6" 7 - "3.6"
8# Travis versions of these are really outdated 8before_script:
9before_script: pip install -U mock nose pytest 9 # Travis versions of these are really outdated
10script: python setup.py validate 10 - pip install -U mock nose pytest
11 # Install wheel with pip instead of building from source
12 - pip install cryptography
13script:
14 - python setup.py validate