From 20b46a11b402b41548b208021b7e83ff0c15a92f Mon Sep 17 00:00:00 2001 From: Alec Edgington Date: Thu, 4 Jan 2024 13:10:47 +0000 Subject: [PATCH 1/6] Correct URL for documentation. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 38582feb..ddf24302 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ author_email="tket-support@cambridgequantum.com", python_requires=">=3.9", project_urls={ - "Documentation": "https://tket.quantinuum.com/extensions/pytket-cutensornet/api/index.html", + "Documentation": "https://tket.quantinuum.com/extensions/pytket-cutensornet/index.html", "Source": "https://github.com/CQCL/pytket-cutensornet", "Tracker": "https://github.com/CQCL/pytket-cutensornet/issues", }, From fa7bf4480ea41da8d3f9bbb477257614eac002ef Mon Sep 17 00:00:00 2001 From: cqc-melf <70640934+cqc-melf@users.noreply.github.com> Date: Tue, 9 Jan 2024 11:01:09 +0000 Subject: [PATCH 2/6] Fix/workflow 2023 (#64) * fix artifact name related to update of actions/upload-artifact@v4 * split download in three options * update download of wheels --------- Co-authored-by: PabloAndresCQ --- .github/workflows/build_and_test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index f103e89d..c00131f7 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -54,7 +54,7 @@ jobs: - uses: actions/upload-artifact@v4 if: github.event_name == 'release' || contains(github.ref, 'refs/heads/wheel') with: - name: artefacts-${{ matrix.os }} + name: artefact-${{ matrix.os }} path: wheelhouse/ - name: Install docs dependencies if: (matrix.os == 'ubuntu-22.04') && (github.event_name == 'pull_request' || github.event_name == 'schedule' ) @@ -74,9 +74,13 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Download all wheels + # downloading all three files into the wheelhouse + # all files are identical, so there will only be one file uses: actions/download-artifact@v4 with: path: wheelhouse + pattern: artefact-* + merge-multiple: true - name: Put them all in the dist folder run: | mkdir dist @@ -137,4 +141,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file + uses: actions/deploy-pages@v4 From e5fb71bae1fd76f7fa5213c2ce6d65e15a79c817 Mon Sep 17 00:00:00 2001 From: Melf Date: Wed, 10 Jan 2024 14:52:59 +0000 Subject: [PATCH 3/6] update pytket version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 013bae22..8e7360ca 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.22"], + install_requires=["pytket ~= 1.23"], classifiers=[ "Environment :: Console", "Programming Language :: Python :: 3.9", From fb46d0a3965f29017bb3f4a39d49d30a71ec9e8f Mon Sep 17 00:00:00 2001 From: Melf Date: Wed, 10 Jan 2024 16:08:27 +0000 Subject: [PATCH 4/6] update version --- _metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_metadata.py b/_metadata.py index ddd08248..d229c3ec 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.5.2" +__extension_version__ = "0.5.3" __extension_name__ = "pytket-cutensornet" From 297c3c563e5e8b59f06f7203b35ee2924f785fd4 Mon Sep 17 00:00:00 2001 From: Melf Date: Wed, 10 Jan 2024 16:16:45 +0000 Subject: [PATCH 5/6] update changelog --- docs/changelog.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 736b1b81..c3a21edf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ~~~~~~~~~ +0.5.3 (January 2024) +-------------------- + +* Updated pytket version requirement to 1.23. + 0.5.2 (December 2023) --------------------- From 58427f335400f63a35eb2150349680d46534a43f Mon Sep 17 00:00:00 2001 From: Melf Date: Wed, 10 Jan 2024 16:32:40 +0000 Subject: [PATCH 6/6] update deploy-pages@4.0.1 --- .github/workflows/build_and_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index c00131f7..662d0964 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -141,4 +141,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v4.0.1