Skip to content

Commit 6a5efb9

Browse files
committed
Try Python 3.13
1 parent 17748b7 commit 6a5efb9

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
if: ${{ needs.changes.outputs.changes == 'true' }}
5555
strategy:
5656
matrix:
57-
python-version: ["3.10", "3.12"]
57+
python-version: ["3.10", "3.13"]
5858
steps:
5959
- uses: actions/checkout@v4
6060
with:
@@ -75,7 +75,7 @@ jobs:
7575
fail-fast: false
7676
matrix:
7777
os: ["ubuntu-latest"]
78-
python-version: ["3.10", "3.12"]
78+
python-version: ["3.10", "3.13"]
7979
fast-compile: [0, 1]
8080
float32: [0, 1]
8181
install-numba: [0]
@@ -114,7 +114,7 @@ jobs:
114114
part: "tests/link/numba"
115115
- install-numba: 1
116116
os: "ubuntu-latest"
117-
python-version: "3.12"
117+
python-version: "3.13"
118118
fast-compile: 0
119119
float32: 0
120120
part: "tests/link/numba"
@@ -126,7 +126,7 @@ jobs:
126126
part: "tests/link/jax"
127127
- install-jax: 1
128128
os: "ubuntu-latest"
129-
python-version: "3.12"
129+
python-version: "3.13"
130130
fast-compile: 0
131131
float32: 0
132132
part: "tests/link/jax"
@@ -137,7 +137,7 @@ jobs:
137137
float32: 0
138138
part: "tests/link/pytorch"
139139
- os: macos-15
140-
python-version: "3.12"
140+
python-version: "3.13"
141141
fast-compile: 0
142142
float32: 0
143143
install-numba: 0
@@ -297,7 +297,7 @@ jobs:
297297
- name: Set up Python
298298
uses: actions/setup-python@v5
299299
with:
300-
python-version: "3.12"
300+
python-version: "3.13"
301301

302302
- name: Install dependencies
303303
run: |

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010
[project]
1111
name = "pytensor"
1212
dynamic = ['version']
13-
requires-python = ">=3.10,<3.13"
13+
requires-python = ">=3.10,<3.14"
1414
authors = [{ name = "pymc-devs", email = "[email protected]" }]
1515
description = "Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs."
1616
readme = "README.rst"
@@ -33,6 +33,7 @@ classifiers = [
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
3535
"Programming Language :: Python :: 3.12",
36+
"Programming Language :: Python :: 3.13",
3637
]
3738

3839
keywords = [

0 commit comments

Comments
 (0)