summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-09-01 13:33:26 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-09-01 18:47:16 -0400
commit6ca129df99ac23e8bbd146200b0f8eb68902f8a2 (patch)
tree7798296761ca80f8ba53337ae02ec56f494714fb /.circleci
parent7888a1fca9488edd2da27199cade72062c22e67e (diff)
downloadcherrypy-git-6ca129df99ac23e8bbd146200b0f8eb68902f8a2.tar.gz
Remove Python 2.7 from Circle CI. Ref #1730.
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 6cee692a..493fd79b 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -15,16 +15,16 @@ jobs:
' >> $BASH_ENV
- run: |-
- for py_ver in 2.7.14 3.6.4 3.5.4 3.4.7 pypy3.5-5.10.0
+ for py_ver in 3.6.4 3.5.4 3.4.7 pypy3.5-5.10.0
do
pyenv install "$py_ver" &
done
wait
- - run: pyenv global 2.7.14 3.6.4 3.5.4 3.4.7 pypy3.5-5.10.0
+ - run: pyenv global 3.6.4 3.5.4 3.4.7 pypy3.5-5.10.0
- run: pip install tox tox-pyenv
- checkout
- - run: tox -e py27,py34,py35,py36,pypy3 -- -p no:sugar
+ - run: tox -e py34,py35,py36,pypy3 -- -p no:sugar
- store_test_results:
path: .test-results
- store_test_results:
@@ -39,7 +39,7 @@ jobs:
steps:
- checkout
- run: pip install tox
- - run: tox -e py27,py34,py35,py36
+ - run: tox -e py34,py35,py36
- store_test_results:
path: .test-results
- store_test_results: