Skip to content

Commit d266f18

Browse files
committed
Add support for Python 3.11
1 parent 2064ef2 commit d266f18

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
@@ -52,7 +52,7 @@ jobs:
5252
if: ${{ needs.changes.outputs.changes == 'true' }}
5353
strategy:
5454
matrix:
55-
python-version: ["3.8", "3.9", "3.10"]
55+
python-version: ["3.8", "3.9", "3.10", "3.11"]
5656
steps:
5757
- uses: actions/checkout@v3
5858
- uses: actions/setup-python@v4
@@ -70,7 +70,7 @@ jobs:
7070
strategy:
7171
fail-fast: false
7272
matrix:
73-
python-version: ["3.8", "3.10"]
73+
python-version: ["3.8", "3.11"]
7474
fast-compile: [0,1]
7575
float32: [0,1]
7676
install-numba: [1]
@@ -222,7 +222,7 @@ jobs:
222222
- name: Set up Python
223223
uses: actions/setup-python@v4
224224
with:
225-
python-version: "3.10"
225+
python-version: "3.11"
226226

227227
- name: Install dependencies
228228
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ classifiers = [
3737
"Programming Language :: Python :: 3.8",
3838
"Programming Language :: Python :: 3.9",
3939
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
4041
]
4142

4243
keywords = [

0 commit comments

Comments
 (0)