Skip to content

Commit 05aab07

Browse files
committed
Support Python 3.11 and drop support for 3.7
1 parent 958cd14 commit 05aab07

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: true
6969
matrix:
70-
python-version: ["3.8", "3.10"]
70+
python-version: ["3.8", "3.11"]
7171
fast-compile: [0,1]
7272
float32: [0,1]
7373
install-numba: [1]
@@ -85,11 +85,11 @@ jobs:
8585
- python-version: "3.8"
8686
fast-compile: 0
8787
float32: 1
88-
- python-version: "3.10"
88+
- python-version: "3.11"
8989
fast-compile: 1
90-
- python-version: "3.10"
90+
- python-version: "3.11"
9191
float32: 1
92-
- python-version: "3.10"
92+
- python-version: "3.11"
9393
part: "tests/tensor/test_math.py"
9494
steps:
9595
- uses: actions/checkout@v3
@@ -220,7 +220,7 @@ jobs:
220220
- name: Set up Python
221221
uses: actions/setup-python@v4
222222
with:
223-
python-version: "3.10"
223+
python-version: "3.11"
224224

225225
- name: Install dependencies
226226
run: |

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name = "pytensor"
1212
dynamic = [
1313
'version'
1414
]
15-
requires-python = ">=3.7"
15+
requires-python = ">=3.8"
1616
authors = [
1717
{name = "pymc-devs", email = "[email protected]"}
1818
]
@@ -34,10 +34,10 @@ classifiers = [
3434
"Operating System :: Unix",
3535
"Operating System :: MacOS",
3636
"Programming Language :: Python :: 3",
37-
"Programming Language :: Python :: 3.7",
3837
"Programming Language :: Python :: 3.8",
3938
"Programming Language :: Python :: 3.9",
4039
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
4141
]
4242

4343
keywords = [

0 commit comments

Comments
 (0)