Skip to content

Commit

Permalink
Release 0.36.0 (#471)
Browse files Browse the repository at this point in the history
* update pytket

* update github actions

* update changelog

* update version

* add docs link to readme

* add link to slack and stackexchange

* remove publish dosc from workflow

* remove publish docs II
  • Loading branch information
cqc-melf authored Jul 10, 2024
1 parent dd3ca86 commit 73bea9f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 27 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,23 +308,3 @@ jobs:
cd .github/workflows/docs
mkdir extensions
./build-docs -d ${GITHUB_WORKSPACE}/.github/workflows/docs/extensions/api
- name: Upload docs as artefact
uses: actions/upload-pages-artifact@v3
with:
path: .github/workflows/docs/extensions

publish_docs:
name: Publish docs
if: github.event_name == 'release'
needs: build_docs
runs-on: ubuntu-22.04
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .github/workflows/issue-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v1.0.1
- uses: actions/add-to-project@v1.0.2
with:
project-url: https://github.com/orgs/CQCL-DEV/projects/19
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# pytket-quantinuum

[![Slack](https://img.shields.io/badge/Slack-4A154B?style=for-the-badge&logo=slack&logoColor=white)](https://tketusers.slack.com/join/shared_invite/zt-18qmsamj9-UqQFVdkRzxnXCcKtcarLRA#)
[![Stack Exchange](https://img.shields.io/badge/StackExchange-%23ffffff.svg?style=for-the-badge&logo=StackExchange)](https://quantumcomputing.stackexchange.com/tags/pytket)

[Pytket](https://tket.quantinuum.com/api-docs/index.html) is a python module for interfacing
with tket, a quantum computing toolkit and optimising compiler developed by Quantinuum.

`pytket-quantinuum` is an extension to `pytket` that allows `pytket` circuits to
be executed on Quantinuum's quantum devices.

Some useful links:
- [API Documentation](https://tket.quantinuum.com/extensions/pytket-quantinuum/)

## Getting started

`pytket-quantinuum` is available for Python 3.10, 3.11 and 3.12, on Linux, MacOS
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.35.0"
__extension_version__ = "0.36.0"
__extension_name__ = "pytket-quantinuum"
7 changes: 4 additions & 3 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Changelog
~~~~~~~~~

0.36.0
------
0.36.0 (July 2024)
------------------

* Update pytket version requirement to 1.30.
* Updated pytket version requirement to 1.30.
* Update pytket-qir version requirement to 0.12.

0.35.0 (June 2024)
------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
packages=find_namespace_packages(include=["pytket.*"]),
include_package_data=True,
install_requires=[
"pytket >= 1.30.0rc0, < 2",
"pytket-qir ~= 0.11.0",
"pytket >= 1.30.0",
"pytket-qir >= 0.12.0",
"requests >= 2.2",
"types-requests",
"websockets >= 7.0",
Expand Down

0 comments on commit 73bea9f

Please sign in to comment.