aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2017-10-01 03:49:47 +0000
committerMike Crute <mike@crute.us>2017-10-01 04:11:59 +0000
commit1a2b7f84c46252af96a6042f142a2fbab9c14f56 (patch)
tree1950cd08a3e9096e0de62ce1c067576a7325b8a2 /.travis.yml
parent3afeff998ca67acc36f3997421b7887fcc748b66 (diff)
downloadpydora-1a2b7f84c46252af96a6042f142a2fbab9c14f56.tar.bz2
pydora-1a2b7f84c46252af96a6042f142a2fbab9c14f56.tar.xz
pydora-1a2b7f84c46252af96a6042f142a2fbab9c14f56.zip
Pick crypto package based on runtime version
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index d792753..c561420 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,8 @@ python:
8before_script: 8before_script:
9 # Travis versions of these are really outdated 9 # Travis versions of these are really outdated
10 - pip install -U mock nose pytest 10 - pip install -U mock nose pytest
11 # Install wheel with pip instead of building from source 11 # Install wheel with pip instead of building from source but only for
12 - pip install cryptography 12 # Python 2 and 3.3
13 - if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install cryptography; fi
13script: 14script:
14 - python setup.py validate 15 - python setup.py validate