Skip to content

Commit

Permalink
feat: remove python python 3 upper bound (support python 3.13) (#578)
Browse files Browse the repository at this point in the history
Closes #558
  • Loading branch information
ss2165 committed Oct 21, 2024
1 parent 15d4e07 commit a8c44db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
run: uv run pytest tests/integration/test_py.py tests/error/test_py_errors.py tests/integration/test_tket.py

test-coverage:
name: Check Python (3.12) with coverage
name: Check Python (3.13) with coverage
runs-on: ubuntu-latest
env:
PYTHON_VERSION: '3.12'
PYTHON_VERSION: '3.13'

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion execute_llvm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "execute-llvm"
requires-python = ">=3.10,<3.13"
requires-python = ">=3.10,<4"
classifiers = [
"Private :: Do Not Upload",
"Programming Language :: Rust",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "guppylang"
version = "0.12.1"
requires-python = ">=3.10,<3.13"
requires-python = ">=3.10,<4"
description = "Pythonic quantum-classical programming language"
license = { file = "LICENCE" }
readme = "quickstart.md"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a8c44db

Please sign in to comment.