Skip to content

Commit 08515fc

Browse files
committed
Add support for Python 3.11
1 parent 7301a45 commit 08515fc

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -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]
@@ -88,11 +88,11 @@ jobs:
8888
- python-version: "3.8"
8989
fast-compile: 0
9090
float32: 1
91-
- python-version: "3.10"
91+
- python-version: "3.11"
9292
fast-compile: 1
93-
- python-version: "3.10"
93+
- python-version: "3.11"
9494
float32: 1
95-
- python-version: "3.10"
95+
- python-version: "3.11"
9696
part: "tests/tensor/test_math.py"
9797
steps:
9898
- uses: actions/checkout@v3
@@ -223,7 +223,7 @@ jobs:
223223
- name: Set up Python
224224
uses: actions/setup-python@v4
225225
with:
226-
python-version: "3.10"
226+
python-version: "3.11"
227227

228228
- name: Install dependencies
229229
run: |

pyproject.toml

+1
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)