Skip to content

Commit

Permalink
Add Python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 16, 2021
1 parent 61023f5 commit 19f0a43
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Expand Up @@ -24,6 +24,7 @@ jobs:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "pypy3"
vcs:
- bzr
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -5,7 +5,7 @@ Changelog
0.48 (unreleased)
-----------------

- Nothing changed yet.
- Add Python 3.10 support.


0.47 (2021-09-22)
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -8,6 +8,7 @@ environment:
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"
- PYTHON: "C:\\Python310"

init:
- "echo %PYTHON%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -49,6 +49,7 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py36,py37,py38,py39,pypy3,flake8
py36,py37,py38,py39,py310,pypy3,flake8

[testenv]
passenv = LANG LC_CTYPE LC_ALL MSYSTEM
Expand Down

0 comments on commit 19f0a43

Please sign in to comment.