Skip to content

Commit d234bf9

Browse files
Support Python 3.10 (#208)
1 parent dc8b635 commit d234bf9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: Ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.8, 3.9]
15+
python-version: ["3.8", "3.9", "3.10"]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: macOS-latest
4141
strategy:
4242
matrix:
43-
python-version: [3.8, 3.9]
43+
python-version: ["3.8", "3.9", "3.10"]
4444
steps:
4545
- uses: actions/checkout@v3
4646
- name: Set up Python ${{ matrix.python-version }}
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: windows-latest
6969
strategy:
7070
matrix:
71-
python-version: [3.8, 3.9]
71+
python-version: ["3.8", "3.9", "3.10"]
7272
steps:
7373
- uses: actions/checkout@v3
7474
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def parse_requirements_file(filename):
5757
"Programming Language :: Python",
5858
"Programming Language :: Python :: 3.8",
5959
"Programming Language :: Python :: 3.9",
60+
"Programming Language :: Python :: 3.10",
6061
"Topic :: Scientific/Engineering",
6162
"Operating System :: Microsoft :: Windows",
6263
"Operating System :: POSIX",

0 commit comments

Comments
 (0)