Skip to content

Commit 9417469

Browse files
authored
Release 0.55 (#365)
* 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
1 parent 0b04121 commit 9417469

File tree

6 files changed

+12
-26
lines changed

6 files changed

+12
-26
lines changed

.github/workflows/build_and_test.yml

-20
Original file line numberDiff line numberDiff line change
@@ -139,23 +139,3 @@ jobs:
139139
cd .github/workflows/docs
140140
mkdir extensions
141141
./build-docs -d ${GITHUB_WORKSPACE}/.github/workflows/docs/extensions/api
142-
- name: Upload docs as artefact
143-
uses: actions/upload-pages-artifact@v3
144-
with:
145-
path: .github/workflows/docs/extensions
146-
147-
publish_docs:
148-
name: Publish docs
149-
if: github.event_name == 'release'
150-
needs: build_docs
151-
runs-on: ubuntu-22.04
152-
permissions:
153-
pages: write
154-
id-token: write
155-
environment:
156-
name: github-pages
157-
url: ${{ steps.deployment.outputs.page_url }}
158-
steps:
159-
- name: Deploy to GitHub Pages
160-
id: deployment
161-
uses: actions/deploy-pages@v4.0.5

.github/workflows/issue-to-project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Add issue to project
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/add-to-project@v1.0.1
13+
- uses: actions/add-to-project@v1.0.2
1414
with:
1515
project-url: https://github.com/orgs/CQCL-DEV/projects/19
1616
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# pytket-qiskit
22

3+
[![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#)
4+
[![Stack Exchange](https://img.shields.io/badge/StackExchange-%23ffffff.svg?style=for-the-badge&logo=StackExchange)](https://quantumcomputing.stackexchange.com/tags/pytket)
5+
36
[Pytket](https://tket.quantinuum.com/api-docs/index.html) is a python module for interfacing
47
with tket, a quantum computing toolkit and optimising compiler developed by Quantinuum.
58

69
`pytket-qiskit` is an extension to `pytket` that allows `pytket` circuits to be
710
run on IBM backends and simulators, as well as conversion to and from Qiskit
811
representations.
912

13+
Some useful links:
14+
- [API Documentation](https://tket.quantinuum.com/extensions/pytket-qiskit/)
15+
1016
## Getting started
1117

1218
`pytket-qiskit` is available for Python 3.10, 3.11 and 3.12, on Linux, MacOS

_metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__extension_version__ = "0.54.1"
1+
__extension_version__ = "0.55.0"
22
__extension_name__ = "pytket-qiskit"

docs/changelog.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Changelog
22
~~~~~~~~~
33

4-
0.55.0 (unreleased)
5-
-------------------
4+
0.55.0 (July 2024)
5+
------------------
66

7-
* Updated pytket version requirement to 1.30.0rc0.
7+
* Updated pytket version requirement to 1.30.
88

99
0.54.1 (June 2024)
1010
------------------

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
packages=find_namespace_packages(include=["pytket.*"]),
4545
include_package_data=True,
4646
install_requires=[
47-
"pytket >= 1.30.0rc0",
47+
"pytket >= 1.30.0",
4848
"qiskit >= 1.1",
4949
"qiskit-algorithms >= 0.3.0",
5050
"qiskit-ibm-runtime >= 0.24.1",

0 commit comments

Comments
 (0)