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
CircleCI: Upgrade to Python 3.9
  • Loading branch information
cclauss authored Oct 24, 2020
commit 99a44faccc4e75de56a1c5ad35223366d6f481ec
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