Skip to content

Commit

Permalink
Release 0.36.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-alec committed Nov 22, 2024
1 parent 0dd0f37 commit c626098
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- { python: "3.12", os: "ubuntu-latest", session: "tests" }
- { python: "3.12", os: "macos-latest", session: "tests" }
- { python: "3.11", os: "ubuntu-latest", session: "docs-build" }
- { python: "3.13", os: "windows-latest", session: "tests" }
- { python: "3.13", os: "ubuntu-latest", session: "tests" }
- { python: "3.13", os: "macos-latest", session: "tests" }
uses: ./.github/workflows/nox-session.yml
with:
python-version: ${{ matrix.python }}
Expand Down Expand Up @@ -98,6 +101,9 @@ jobs:
- { python: "3.12", os: "windows-latest", session: "tests" }
- { python: "3.12", os: "ubuntu-latest", session: "tests" }
- { python: "3.12", os: "macos-latest", session: "tests" }
- { python: "3.13", os: "windows-latest", session: "tests" }
- { python: "3.13", os: "ubuntu-latest", session: "tests" }
- { python: "3.13", os: "macos-latest", session: "tests" }
uses: ./.github/workflows/nox-session.yml
with:
python-version: ${{ matrix.python }}
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Changelog
~~~~~~~~~

0.36.0 (November 2024)
----------------------

* Updated pytket version requirement to 1.35.
* Support Python 3.13.

0.35.0 (October 2024)
---------------------

Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytket-aqt"
version = "0.35.0"
version = "0.36.0"
description = "Extension for pytket, providing access to AQT backends"
authors = ["TKET development team <[email protected]>"]
license = "Apache 2"
Expand All @@ -13,6 +13,7 @@ classifiers= [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
Expand All @@ -26,8 +27,8 @@ classifiers= [
"Bug Tracker" = "https://github.com/CQCL/pytket-aqt/issues"

[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pytket = "^1.33"
python = ">=3.10,<3.14"
pytket = "^1.35"
requests = "^2.22"
types-requests = "*"
pydantic = "^2.0"
Expand Down

0 comments on commit c626098

Please sign in to comment.