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 #1497

Merged
merged 3 commits into from Oct 9, 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
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -22,17 +22,19 @@ jobs:
- Windows
- macOS
python-version:
- "3.10"
- 3.9
- 3.6
- 3.7
- 3.8
pip-version:
- "latest"
- "previous"
include:
- os: Ubuntu
python-version: 3.10-dev
pip-version: latest
# TODO: uncomment after https://github.com/pytest-dev/py/issues/273 being fixed
# include:
joshuadavidthomas marked this conversation as resolved.
Show resolved Hide resolved
# - os: Ubuntu
# python-version: 3.11-dev
# pip-version: latest

env:
PY_COLORS: 1
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -19,6 +19,7 @@ classifiers =
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 :: System :: Systems Administration
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,7 +1,7 @@
[tox]
envlist =
# NOTE: keep this in sync with the env list in .github/workflows/ci.yml.
py{36,37,38,39,py3}-pip{20.3,previous,latest,main}-coverage
py{36,37,38,39,310,py3}-pip{20.3,previous,latest,main}-coverage
checkqa
readme
skip_missing_interpreters = True
Expand Down