Skip to content

Commit

Permalink
Drop legacy Python
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Oct 3, 2018
1 parent dfc0308 commit 872d15a
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .circleci/config.yml
Expand Up @@ -12,19 +12,31 @@ flake8-steps: &steps
#- run: pytest

jobs:
Python2:
Python34:
docker:
- image: circleci/python:2.7.15
- image: circleci/python:3.4
steps: *steps

Python3:
Python35:
docker:
- image: circleci/python:3.7.0
- image: circleci/python:3.5
steps: *steps

Python36:
docker:
- image: circleci/python:3.6
steps: *steps

Python37:
docker:
- image: circleci/python:3.7
steps: *steps

workflows:
version: 2
build:
jobs:
- Python2
- Python3
- Python34
- Python35
- Python36
- Python37

0 comments on commit 872d15a

Please sign in to comment.