From 582c002535756a5f7aee9957091037b8580d31b6 Mon Sep 17 00:00:00 2001 From: Shinya Ohyanagi Date: Mon, 7 Jun 2021 21:55:56 +0900 Subject: [PATCH] Add Python3.9 --- .travis.yml | 1 + setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index eb7c289..7ee46e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - 3.6 - 3.7 - 3.8 + - 3.9 - pypy3 script: - flake8 . diff --git a/setup.py b/setup.py index 6524cd8..6f47daf 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ], diff --git a/tox.ini b/tox.ini index f975503..714f9b4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35, py36, py37, py38, pypy3 +envlist = py35, py36, py37, py38, py39, pypy3 [testenv] deps = -r{toxinidir}/requirements.txt