Skip to content

Commit 9404018

Browse files
committed
Support Python 3.11
1 parent d234bf9 commit 9404018

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", "3.10"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11"]
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", "3.10"]
43+
python-version: ["3.8", "3.9", "3.10", "3.11"]
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", "3.10"]
71+
python-version: ["3.8", "3.9", "3.10", "3.11"]
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
@@ -58,6 +58,7 @@ def parse_requirements_file(filename):
5858
"Programming Language :: Python :: 3.8",
5959
"Programming Language :: Python :: 3.9",
6060
"Programming Language :: Python :: 3.10",
61+
"Programming Language :: Python :: 3.11",
6162
"Topic :: Scientific/Engineering",
6263
"Operating System :: Microsoft :: Windows",
6364
"Operating System :: POSIX",

0 commit comments

Comments
 (0)