Skip to content

Commit

Permalink
Add support for Python 3.10 (#2073)
Browse files Browse the repository at this point in the history
Now that Python 3.10 has been released, we should test it in CI.
  • Loading branch information
s-t-e-v-e-n-k committed Oct 13, 2021
1 parent bc5e595 commit aa694f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
name: test (Python ${{ matrix.python-version }})
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -100,6 +100,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
],
python_requires=">=3.6",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -1,7 +1,7 @@
[tox]
envlist =
lint,
py{36,37,38,39},
py{36,37,38,39,310},
docs

[gh-actions]
Expand All @@ -10,6 +10,7 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310

[testenv]
deps = -rtest-requirements.txt
Expand Down

0 comments on commit aa694f8

Please sign in to comment.