Skip to content

Commit

Permalink
Try Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
maresb committed Feb 9, 2025
1 parent 17748b7 commit 6a5efb9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
if: ${{ needs.changes.outputs.changes == 'true' }}
strategy:
matrix:
python-version: ["3.10", "3.12"]
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -75,7 +75,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.12"]
python-version: ["3.10", "3.13"]
fast-compile: [0, 1]
float32: [0, 1]
install-numba: [0]
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
part: "tests/link/numba"
- install-numba: 1
os: "ubuntu-latest"
python-version: "3.12"
python-version: "3.13"
fast-compile: 0
float32: 0
part: "tests/link/numba"
Expand All @@ -126,7 +126,7 @@ jobs:
part: "tests/link/jax"
- install-jax: 1
os: "ubuntu-latest"
python-version: "3.12"
python-version: "3.13"
fast-compile: 0
float32: 0
part: "tests/link/jax"
Expand All @@ -137,7 +137,7 @@ jobs:
float32: 0
part: "tests/link/pytorch"
- os: macos-15
python-version: "3.12"
python-version: "3.13"
fast-compile: 0
float32: 0
install-numba: 0
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- name: Install dependencies
run: |
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pytensor"
dynamic = ['version']
requires-python = ">=3.10,<3.13"
requires-python = ">=3.10,<3.14"
authors = [{ name = "pymc-devs", email = "pymc.devs@gmail.com" }]
description = "Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs."
readme = "README.rst"
Expand All @@ -33,6 +33,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

keywords = [
Expand Down

0 comments on commit 6a5efb9

Please sign in to comment.