From 99d0b06735d1efd5914a8b10854565fa7b6548f0 Mon Sep 17 00:00:00 2001 From: Nicholas Wiles Date: Thu, 4 Jun 2020 22:47:12 -0700 Subject: [PATCH 1/4] Add python 3.8 to tox config (feature/173_python_3_8) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6d31768..00c002d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py36,py37 +envlist = py27,py37,py38 [testenv] passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH From fdbb089301bbae06baab9ecde6d8be08508b12f5 Mon Sep 17 00:00:00 2001 From: Nicholas Wiles Date: Thu, 4 Jun 2020 22:49:30 -0700 Subject: [PATCH 2/4] Remove python 2.7 tox config (feature/173_python_3_8) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 00c002d..b7c4cca 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py37,py38 +envlist = py36,py37,py38 [testenv] passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH From 387546c044aaa50455b59714279ae92f30ff356e Mon Sep 17 00:00:00 2001 From: Nicholas Wiles Date: Thu, 4 Jun 2020 22:52:34 -0700 Subject: [PATCH 3/4] Remove python 2.7 tox config (feature/173_python_3_8) --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 869fc23..92aa29f 100755 --- a/setup.py +++ b/setup.py @@ -37,18 +37,17 @@ url='https://github.com/stopthatcow/zazu', license='MIT', platforms='POSIX,MacOS,Windows', - # Python 2.7 and 3.6+ are supported. - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*', + # Python 3.6+ are supported. + python_requires='>=3.6', classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Software Development', 'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Quality Assurance', From 7f758cbc45bff2c3d9520b590b0f05e8d0ab8afc Mon Sep 17 00:00:00 2001 From: Nicholas Wiles Date: Thu, 4 Jun 2020 22:57:38 -0700 Subject: [PATCH 4/4] Remove python 2.7 travis config (feature/173_python_3_8) --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index aeb2287..e0ae13c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,15 +3,15 @@ sudo: required language: python python: - - "2.7" - "3.6" - "3.7" + - "3.8" # command to install dependencies install: - pip install tox-travis -# command to run tests +# Command to run tests. script: tox