Skip to content

Commit 84af567

Browse files
committed
Update test.yml Actions workflow to run tests on Python 3.10
1 parent f3338d9 commit 84af567

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- 3.7
1717
- 3.8
1818
- 3.9
19+
- '3.10'
1920
- pypy-2.7
2021
- pypy-3.6
2122
- pypy-3.7
@@ -44,10 +45,10 @@ jobs:
4445
steps:
4546
- name: Checkout code
4647
uses: actions/checkout@v1
47-
- name: Setup Python 3.9
48+
- name: Setup Python 3.10
4849
uses: actions/setup-python@v2
4950
with:
50-
python-version: 3.9
51+
python-version: '3.10'
5152
- name: Install coverage package
5253
run: python -m pip install -U coverage
5354
- name: Download partial coverage reports
@@ -76,10 +77,10 @@ jobs:
7677
steps:
7778
- name: Checkout code
7879
uses: actions/checkout@v1
79-
- name: Setup Python 3.9
80+
- name: Setup Python '3.10'
8081
uses: actions/setup-python@v2
8182
with:
82-
python-version: 3.9
83+
python-version: '3.10'
8384
- name: Update pip
8485
run: python -m pip install -U pip wheel setuptools
8586
- name: Install tox

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ classifiers =
2121
Operating System :: OS Independent
2222
Programming Language :: Python
2323
Programming Language :: Python :: 2.7
24-
Programming Language :: Python :: 3.4
2524
Programming Language :: Python :: 3.5
2625
Programming Language :: Python :: 3.6
2726
Programming Language :: Python :: 3.7
2827
Programming Language :: Python :: 3.8
2928
Programming Language :: Python :: 3.9
29+
Programming Language :: Python :: 3.10
3030
Programming Language :: Python :: Implementation :: CPython
3131
Programming Language :: Python :: Implementation :: PyPy
3232
Topic :: System :: Filesystems

0 commit comments

Comments
 (0)