Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Python 3.10 #809

Merged
merged 2 commits into from Sep 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, windows-2019, macos-10.15]
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev, pypy3]
exclude:
- os: windows-2019
python-version: pypy3
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -13,7 +13,7 @@ clean-test-env:
@rm -rf test-env

standalone-test: import-cldr test-env
@test-env/bin/py.test tests
@test-env/bin/pytest tests

clean: clean-cldr clean-pyc clean-test-env

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -45,10 +45,12 @@ def run(self):
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39}
py{36,37,38,39,310}
pypy3

[testenv]
Expand All @@ -23,3 +23,4 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10-dev: py310