Skip to content

Commit 8f023ec

Browse files
author
cclauss
authored
CircleCI: Upgrade from Python 3.6 —> 3.7
1 parent 95e59b0 commit 8f023ec

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ my-steps: &steps
1414
- run: python -m unittest discover test_replays
1515

1616
jobs:
17-
Python_2.7:
17+
Python2:
1818
docker:
19-
- image: circleci/python:2.7
19+
- image: circleci/python:2.7.15
2020
steps: *steps
2121

22-
Python_3.6:
22+
Python3:
2323
docker:
24-
- image: circleci/python:3.6
24+
- image: circleci/python:3.7
2525
steps: *steps
2626

2727
workflows:
2828
version: 2
2929
build:
3030
jobs:
31-
- Python_2.7
32-
- Python_3.6
31+
- Python2
32+
- Python3

0 commit comments

Comments
 (0)