From fc329a9e773527ffd22ac57aa801432ab7893a6c Mon Sep 17 00:00:00 2001 From: David Hagen Date: Tue, 8 Dec 2020 15:02:30 -0500 Subject: [PATCH] Add support for Python 3.9; drop support for Python 3.5 --- .travis.yml | 4 ++-- setup.py | 2 +- tox.ini | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3816994..af00598 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,14 @@ dist: xenial matrix: include: - - python: 3.5 - env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 - python: 3.7 env: TOXENV=py37 - python: 3.8 env: TOXENV=py38 + - python: 3.9 + env: TOXENV=py39 - python: 3.7 env: TOXENV=pep8 diff --git a/setup.py b/setup.py index 6508c44..d8daa6b 100644 --- a/setup.py +++ b/setup.py @@ -29,9 +29,9 @@ 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], ) diff --git a/tox.ini b/tox.ini index 03a3eed..215192f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,10 @@ [tox] # Environment changes have to be manually synced with '.travis.yml'. envlist = - py35 py36 py37 py38 + py39 coverage pep8 @@ -23,7 +23,7 @@ commands = [testenv:coverage] # Separate step for combining coverage skip_install = true -depends = py35,py36,py37,py38 +depends = py36,py37,py38,py39 setenv = deps = coverage >= 4.5.3