Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build_and_test: &build_and_test_steps
jobs:
StyleCheck:
docker:
- image: circleci/python:3.8
- image: circleci/python:3.9
steps:
- checkout
- run: sudo pip install black codespell flake8
Expand All @@ -27,12 +27,12 @@ jobs:

Python2:
docker:
- image: circleci/python:2.7.15
- image: circleci/python:2.7.18
steps: *build_and_test_steps

Python3:
docker:
- image: circleci/python:3.8
- image: circleci/python:3.9
steps: *build_and_test_steps


Expand Down