Skip to content

Commit

Permalink
feat: allow Python 3.13, also require newer wasmtime, phir (#255)
Browse files Browse the repository at this point in the history
Closes: #254

See https://qii404.me/github-release-statistics/ or
https://qwertycube.com/github-release-stats/ for wasmtime
release statistics, which helped me choose the most used version
  • Loading branch information
qartik authored Nov 5, 2024
1 parent af46e1f commit 8199d0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: ubuntu-latest
python-version: "3.12"
python-version: "3.13"
deploy-gh-pages: true
runs-on: ${{ matrix.os }}

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
name = "pytket-phir"
description = "A circuit analyzer and translator from pytket to PHIR"
readme = "README.md"
requires-python = ">=3.10, <3.13"
requires-python = ">=3.10, <3.14"
license = { file = "LICENSE" }
authors = [{ name = "Quantinuum" }]
maintainers = [
Expand All @@ -27,9 +27,9 @@ classifiers = [
]
dynamic = ["version"]
dependencies = [
"phir>=0.3.2",
"phir>=0.3.3",
"pytket>=1.34.0",
"wasmtime>=15.0.0",
"wasmtime>=19.0.0",
]

[project.optional-dependencies]
Expand Down

0 comments on commit 8199d0d

Please sign in to comment.