Skip to content

Commit fda4dad

Browse files
authored
Test against Python 3.10 (#330)
* Test against Python 3.10 * Added 3.10 to classifiers * Test on Python 3.10 before publish
1 parent 718a8f6 commit fda4dad

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1313
os: [ubuntu-latest, windows-latest, macos-latest]
1414
steps:
1515
- uses: actions/checkout@v2

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8, 3.9]
10+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1111
numpy: [0, 1]
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
steps:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,6 @@ def get_long_description():
6767
"Programming Language :: Python :: 3.7",
6868
"Programming Language :: Python :: 3.8",
6969
"Programming Language :: Python :: 3.9",
70+
"Programming Language :: Python :: 3.10",
7071
],
7172
)

0 commit comments

Comments
 (0)