Skip to content

Commit d3a9b93

Browse files
committed
Add Python 3.9 and 3.10
1 parent 247aa48 commit d3a9b93

4 files changed

Lines changed: 31 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ python:
55
- "3.6"
66
- "3.7"
77
- "3.8"
8+
- "3.9"
9+
- "3.10"
810
sudo: false
911
env:
1012
global:

appveyor.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,30 @@ environment:
8585
PYTHON_VERSION: '3.8'
8686
PYTHON_ARCH: '64'
8787

88+
- TOXENV: 'py39,codecov'
89+
TOXPYTHON: C:\Python39\python.exe
90+
PYTHON_HOME: C:\Python39
91+
PYTHON_VERSION: '3.9'
92+
PYTHON_ARCH: '32'
93+
94+
- TOXENV: 'py39,codecov'
95+
TOXPYTHON: C:\Python39-x64\python.exe
96+
PYTHON_HOME: C:\Python39-x64
97+
PYTHON_VERSION: '3.9'
98+
PYTHON_ARCH: '64'
99+
100+
- TOXENV: 'py310,codecov'
101+
TOXPYTHON: C:\Python310\python.exe
102+
PYTHON_HOME: C:\Python310
103+
PYTHON_VERSION: '3.10'
104+
PYTHON_ARCH: '32'
105+
106+
- TOXENV: 'py310,codecov'
107+
TOXPYTHON: C:\Python310-x64\python.exe
108+
PYTHON_HOME: C:\Python310-x64
109+
PYTHON_VERSION: '3.10'
110+
PYTHON_ARCH: '64'
111+
88112
init:
89113
- ps: echo $env:TOXENV
90114
- ps: ls C:\Python*

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ def read(*names, **kwargs):
5858
'Programming Language :: Python :: 3.6',
5959
'Programming Language :: Python :: 3.7',
6060
'Programming Language :: Python :: 3.8',
61+
'Programming Language :: Python :: 3.9',
62+
'Programming Language :: Python :: 3.10',
6163
'Programming Language :: Python :: Implementation :: CPython',
6264
'Programming Language :: Python :: Implementation :: PyPy',
6365
'Topic :: Utilities',

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
envlist =
55
clean,
66
check,
7-
{py27,py35,py36,py37,py38,pypy3},
7+
{py27,py35,py36,py37,py38,py39,py310,pypy3},
88
report,
99
docs
1010

@@ -15,6 +15,8 @@ python =
1515
3.6: py36
1616
3.7: py37
1717
3.8: py38
18+
3.9: py39
19+
3.10: py310
1820

1921
[testenv]
2022
setenv =

0 commit comments

Comments
 (0)