From 44bcc02cc4795f4ce7870efd578a2267423936d1 Mon Sep 17 00:00:00 2001 From: cqc-melf <70640934+cqc-melf@users.noreply.github.com> Date: Wed, 10 Jul 2024 17:08:21 +0100 Subject: [PATCH] not Release 0.36 (#92) * update pytket * update changelog * update version * add docs link to readme * add link to slack and stackexchange * remove publish dosc from workflow * remove publish docs II * update changelog --- .github/workflows/build_and_test.yml | 20 -------------------- README.md | 6 ++++++ _metadata.py | 2 +- docs/changelog.rst | 5 +++++ setup.py | 2 +- 5 files changed, 13 insertions(+), 22 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 42a39d6..2e20604 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -139,23 +139,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.0.5 diff --git a/README.md b/README.md index 5f6e587..8167d44 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # pytket-pyquil +[![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. @@ -7,6 +10,9 @@ with tket, a quantum computing toolkit and optimising compiler developed by Quan run on Rigetti backends and simulators, as well as conversion to and from pyQuil representations. +Some useful links: +- [API Documentation](https://tket.quantinuum.com/extensions/pytket-pyquil/) + ## Getting started `pytket-pyquil` is available for Python 3.10, 3.11 and 3.12, on Linux, MacOS diff --git a/_metadata.py b/_metadata.py index 86052d5..847b366 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.35.0" +__extension_version__ = "0.36.0" __extension_name__ = "pytket-pyquil" diff --git a/docs/changelog.rst b/docs/changelog.rst index 6516933..6f7ed8f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ~~~~~~~~~ +0.36.0 (unreleased) +------------------- + +* Updated pytket version requirement to 1.30. + 0.35.0 (April 2024) ------------------- diff --git a/setup.py b/setup.py index 645cf69..874b451 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ packages=find_namespace_packages(include=["pytket.*"]), include_package_data=True, install_requires=[ - "pytket ~= 1.27", + "pytket >= 1.30.0", "pyquil ~= 3.5", "typing-extensions ~= 4.2", ],