From 8f023ec3840d1b7356014e84e092b404d3224896 Mon Sep 17 00:00:00 2001 From: cclauss Date: Sun, 7 Oct 2018 20:00:02 +0200 Subject: [PATCH 1/3] =?UTF-8?q?CircleCI:=20Upgrade=20from=20Python=203.6?= =?UTF-8?q?=20=E2=80=94>=203.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c9e042e0..5bd5244a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 From 0480ec9316f18af9915c7b065f32e4fe17d441b5 Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 8 Oct 2018 11:33:18 +0200 Subject: [PATCH 2/3] Force a retest --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5bd5244a..1370bc61 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 From ef02b2a9e2db0dd0398116f2ba51b6bcc32cedb2 Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 8 Oct 2018 19:13:31 +0200 Subject: [PATCH 3/3] Update trove classifiers to current versions of Python --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 27d87fe4..c14bc2a2 100644 --- a/setup.py +++ b/setup.py @@ -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",