diff --git a/.circleci/config.yml b/.circleci/config.yml index c9e042e0..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 @@ -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 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",