Skip to content

Commit 87d8979

Browse files
authored
Merge pull request #704 from hugovk/add-3.10
2 parents b4544c8 + e0ce1b7 commit 87d8979

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- "py37-pytestlatest"
1616
- "py38-pytestlatest"
1717
- "py39-pytestlatest"
18+
- "py310-pytestlatest"
1819
- "py38-pytestmain"
1920
- "py38-psutil"
2021
- "py38-setproctitle"
@@ -29,6 +30,8 @@ jobs:
2930
python: "3.8"
3031
- tox_env: "py39-pytestlatest"
3132
python: "3.9"
33+
- tox_env: "py310-pytestlatest"
34+
python: "3.10-dev"
3235
- tox_env: "py38-pytestmain"
3336
python: "3.8"
3437
- tox_env: "py38-psutil"
@@ -37,9 +40,9 @@ jobs:
3740
python: "3.8"
3841

3942
steps:
40-
- uses: actions/checkout@v1
43+
- uses: actions/checkout@v2
4144
- name: Set up Python
42-
uses: actions/setup-python@v1
45+
uses: actions/setup-python@v2
4346
with:
4447
python-version: ${{ matrix.python }}
4548
- name: Install tox
@@ -59,9 +62,9 @@ jobs:
5962
needs: build
6063

6164
steps:
62-
- uses: actions/checkout@v1
65+
- uses: actions/checkout@v2
6366
- name: Set up Python
64-
uses: actions/setup-python@v1
67+
uses: actions/setup-python@v2
6568
with:
6669
python-version: "3.7"
6770
- name: Install wheel

changelog/704.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add support for Python 3.10.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@
4848
"Programming Language :: Python :: 3.7",
4949
"Programming Language :: Python :: 3.8",
5050
"Programming Language :: Python :: 3.9",
51+
"Programming Language :: Python :: 3.10",
5152
],
5253
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
linting
4-
py{36,37,38,39}-pytestlatest
4+
py{36,37,38,39,310}-pytestlatest
55
py38-pytestmain
66
py38-psutil
77
py38-setproctitle

0 commit comments

Comments
 (0)