Skip to content

Commit

Permalink
Release 0.39.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-alec committed Nov 22, 2024
1 parent c655141 commit fd53efd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ jobs:
shell: bash
run: |
./.github/workflows/build-test nomypy
- name: Set up Python 3.12
- name: Set up Python 3.13
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build and test (3.12)
python-version: '3.13'
- name: Build and test (3.13)
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion _metadata.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__extension_version__ = "0.38.0"
__extension_version__ = "0.39.0"
__extension_name__ = "pytket-pyquil"
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.38.0 (November 2024)
----------------------

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

0.38.0 (October 2024)
---------------------

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
packages=find_namespace_packages(include=["pytket.*"]),
include_package_data=True,
install_requires=[
"pytket >= 1.33.0",
"pytket >= 1.35.0",
"pyquil >= 4.13.0",
"typing-extensions >= 4.12.2",
],
Expand All @@ -53,6 +53,7 @@
"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 Down

0 comments on commit fd53efd

Please sign in to comment.