Skip to content

Commit 7c00c4a

Browse files
authored
Merge pull request #66 from cclauss/patch-3
CircleCI: Upgrade from Python 3.6 —> 3.7
2 parents 95e59b0 + ef02b2a commit 7c00c4a

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ my-steps: &steps
44
- checkout
55
- run: sudo pip install -r requirements.txt
66
- run: sudo pip install flake8 pytest
7-
- run: python --version ; pip --version ; pwd ; ls
7+
- run: python --version ; pip --version ; pwd ; ls -l
88
# stop the build if there are Python syntax errors or undefined names
99
- run: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
1010
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
@@ -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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@
2323
"Natural Language :: English",
2424
"Operating System :: OS Independent",
2525
"Programming Language :: Python",
26-
"Programming Language :: Python :: 2.6",
2726
"Programming Language :: Python :: 2.7",
28-
"Programming Language :: Python :: 3.2",
29-
"Programming Language :: Python :: 3.3",
27+
"Programming Language :: Python :: 3.4",
28+
"Programming Language :: Python :: 3.5",
29+
"Programming Language :: Python :: 3.6",
30+
"Programming Language :: Python :: 3.7",
3031
"Programming Language :: Python :: Implementation :: PyPy",
3132
"Programming Language :: Python :: Implementation :: CPython",
3233
"Topic :: Games/Entertainment",

0 commit comments

Comments
 (0)