diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 9671429..cfe8c18 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -135,23 +135,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.4 diff --git a/.github/workflows/issue-to-project.yml b/.github/workflows/issue-to-project.yml index f55a9f0..872f433 100644 --- a/.github/workflows/issue-to-project.yml +++ b/.github/workflows/issue-to-project.yml @@ -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 }} diff --git a/README.md b/README.md index 2de3180..58b6e9d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # pytket-qulacs +[![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. @@ -10,6 +13,9 @@ for fast execution. `pytket-qulacs` is an extension to `pytket` that allows `pytket` circuits to be run on the Qulacs simulator. +Some useful links: +- [API Documentation](https://tket.quantinuum.com/extensions/pytket-qulacs/) + ## Getting started `pytket-qulacs` is available for Python 3.10 and 3.11 on Linux, MacOS and diff --git a/_metadata.py b/_metadata.py index 8c4ad63..53322ff 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.36.0" +__extension_version__ = "0.37.0" __extension_name__ = "pytket-qulacs" diff --git a/docs/changelog.rst b/docs/changelog.rst index b394ccc..2a34b15 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ~~~~~~~~~ +0.37.0 (July 2024) +------------------ + +* Updated pytket version requirement to 1.30. + 0.36.0 (April 2024) ------------------- diff --git a/setup.py b/setup.py index 8bdd7f9..159d861 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ license="Apache 2", packages=find_namespace_packages(include=["pytket.*"]), include_package_data=True, - install_requires=["pytket ~= 1.27", "qulacs ~= 0.6.3"], + install_requires=["pytket >= 1.30.0", "qulacs ~= 0.6.3"], classifiers=[ "Environment :: Console", "Programming Language :: Python :: 3.10",