Skip to content

Commit

Permalink
Merge pull request #704 from hugovk/add-3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus committed Sep 21, 2021
2 parents b4544c8 + e0ce1b7 commit 87d8979
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -15,6 +15,7 @@ jobs:
- "py37-pytestlatest"
- "py38-pytestlatest"
- "py39-pytestlatest"
- "py310-pytestlatest"
- "py38-pytestmain"
- "py38-psutil"
- "py38-setproctitle"
Expand All @@ -29,6 +30,8 @@ jobs:
python: "3.8"
- tox_env: "py39-pytestlatest"
python: "3.9"
- tox_env: "py310-pytestlatest"
python: "3.10-dev"
- tox_env: "py38-pytestmain"
python: "3.8"
- tox_env: "py38-psutil"
Expand All @@ -37,9 +40,9 @@ jobs:
python: "3.8"

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
Expand All @@ -59,9 +62,9 @@ jobs:
needs: build

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Install wheel
Expand Down
1 change: 1 addition & 0 deletions changelog/704.feature
@@ -0,0 +1 @@
Add support for Python 3.10.
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -48,5 +48,6 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,7 +1,7 @@
[tox]
envlist=
linting
py{36,37,38,39}-pytestlatest
py{36,37,38,39,310}-pytestlatest
py38-pytestmain
py38-psutil
py38-setproctitle
Expand Down

0 comments on commit 87d8979

Please sign in to comment.