Skip to content

Commit

Permalink
Merge pull request #66 from cclauss/patch-3
Browse files Browse the repository at this point in the history
CircleCI: Upgrade from Python 3.6 —> 3.7
  • Loading branch information
StoicLoofah authored Oct 8, 2018
2 parents 95e59b0 + ef02b2a commit 7c00c4a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ my-steps: &steps
- checkout
- run: sudo pip install -r requirements.txt
- run: sudo pip install flake8 pytest
- run: python --version ; pip --version ; pwd ; ls
- run: python --version ; pip --version ; pwd ; ls -l
# stop the build if there are Python syntax errors or undefined names
- run: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
Expand All @@ -14,19 +14,19 @@ my-steps: &steps
- run: python -m unittest discover test_replays

jobs:
Python_2.7:
Python2:
docker:
- image: circleci/python:2.7
- image: circleci/python:2.7.15
steps: *steps

Python_3.6:
Python3:
docker:
- image: circleci/python:3.6
- image: circleci/python:3.7
steps: *steps

workflows:
version: 2
build:
jobs:
- Python_2.7
- Python_3.6
- Python2
- Python3
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Games/Entertainment",
Expand Down

0 comments on commit 7c00c4a

Please sign in to comment.