summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2018-11-30 19:59:47 -0800
committerAmjith Ramanujam <amjith.r@gmail.com>2018-11-30 19:59:47 -0800
commit37d4dddccf260329d811b193ba0f174f28a2abc6 (patch)
tree2b60de56fa0b7c211200c52caca27da1e13705b8
parent22dcc506a2ae9ae2f231ae33f0960c38c97a8452 (diff)
Remove python 3.7
-rw-r--r--.travis.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 0a130b2..da69052 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,17 +4,16 @@ python:
- "3.4"
- "3.5"
- "3.6"
- - "3.7"
install:
- pip install -r requirements-dev.txt
- - if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then pip install black; fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then pip install black; fi
- pip install -e .
script:
- ./setup.py test --pytest-args="--cov-report= --cov=litecli"
- coverage report
- - if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then ./setup.py lint; fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then ./setup.py lint; fi
after_success:
- codecov