From b5748810d0a70df699822e73da274d43dc12be9a Mon Sep 17 00:00:00 2001 From: Melf Date: Tue, 21 Nov 2023 14:24:27 +0000 Subject: [PATCH 1/6] addtketwebsite --- .github/workflows/docs/build-docs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs/build-docs b/.github/workflows/docs/build-docs index cade78b..b891bd0 100755 --- a/.github/workflows/docs/build-docs +++ b/.github/workflows/docs/build-docs @@ -10,7 +10,8 @@ import sys DOCS_DIR = Path(sys.argv[0]).absolute().parent MODULES_DIR = DOCS_DIR.parent.parent.parent -PYTKET_DOCS_LINK = "https://cqcl.github.io/tket/pytket/api/index.html" +TKET_WEBSITE_LINK = "https://tket.quantinuum.com/" +PYTKET_DOCS_LINK = "https://tket.quantinuum.com/api-docs/" PYTKET_EX_DOCS_LINK = "https://cqcl.github.io/pytket-extensions/api/index.html" PYTKET_PYQUIL_PYPI_LINK = "https://pypi.org/project/pytket-pyquil/" PYTKET_PYQUIL_GITHUB = "https://github.com/CQCL/pytket-pyquil" @@ -51,6 +52,7 @@ def build_module_docs(): content.append( "\n.. toctree::\n\t:caption: More documentation:\n\t:maxdepth: 1\n\n" ) + content.append(f"\tTKET website <{TKET_WEBSITE_LINK}>\n") content.append(f"\tpytket <{PYTKET_DOCS_LINK}>\n") content.append(f"\tpytket extensions <{PYTKET_EX_DOCS_LINK}>\n") content.append( From 8760427c03b716dedb6a0ce02d321e039d8a8292 Mon Sep 17 00:00:00 2001 From: Melf Date: Tue, 21 Nov 2023 14:25:51 +0000 Subject: [PATCH 2/6] updateextlink --- .github/workflows/docs/build-docs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs/build-docs b/.github/workflows/docs/build-docs index b891bd0..d3651bd 100755 --- a/.github/workflows/docs/build-docs +++ b/.github/workflows/docs/build-docs @@ -12,7 +12,7 @@ DOCS_DIR = Path(sys.argv[0]).absolute().parent MODULES_DIR = DOCS_DIR.parent.parent.parent TKET_WEBSITE_LINK = "https://tket.quantinuum.com/" PYTKET_DOCS_LINK = "https://tket.quantinuum.com/api-docs/" -PYTKET_EX_DOCS_LINK = "https://cqcl.github.io/pytket-extensions/api/index.html" +PYTKET_EX_DOCS_LINK = "https://tket.quantinuum.com/api-docs/extensions.html" PYTKET_PYQUIL_PYPI_LINK = "https://pypi.org/project/pytket-pyquil/" PYTKET_PYQUIL_GITHUB = "https://github.com/CQCL/pytket-pyquil" MODULE = "pyquil" From db7913cbe097ef207fa10de68fde8608076ff668 Mon Sep 17 00:00:00 2001 From: Melf Date: Tue, 21 Nov 2023 14:28:23 +0000 Subject: [PATCH 3/6] updatedependabot --- .github/dependabot.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ac1560a..f384d36 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,4 +5,12 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "daily" + - package-ecosystem: pip + directory: "/" + schedule: + interval: "daily" + groups: + python-packages: + patterns: + - "*" From 20f75a30358c425571f2c56facb1b56e49311cea Mon Sep 17 00:00:00 2001 From: Melf Date: Tue, 21 Nov 2023 14:36:24 +0000 Subject: [PATCH 4/6] updatereadme --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 3b08deb..81e18f9 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,3 @@ -# Pytket Extensions - -This repository contains the pytket-pyquil extension, using Quantinuum's -[pytket](https://cqcl.github.io/tket/pytket/api/index.html) quantum SDK. - # pytket-pyquil [Pytket](https://cqcl.github.io/tket/pytket/api/index.html) is a python module for interfacing From 5b52e6e16c50dcd1dce30f4b79f39a1226bbdb3b Mon Sep 17 00:00:00 2001 From: Melf Date: Tue, 21 Nov 2023 15:25:24 +0000 Subject: [PATCH 5/6] updatereadmeII --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81e18f9..a709844 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # pytket-pyquil [Pytket](https://cqcl.github.io/tket/pytket/api/index.html) is a python module for interfacing -with tket, a quantum computing toolkit and optimisation compiler developed by Quantinuum. +with tket, a quantum computing toolkit and optimising compiler developed by Quantinuum. `pytket-pyquil` is an extension to `pytket` that allows `pytket` circuits to be run on Rigetti backends and simulators, as well as conversion to and from pyQuil From 56e30e35a7af5a8511e1cbc316ecaa285e0adaff Mon Sep 17 00:00:00 2001 From: Melf Date: Tue, 21 Nov 2023 15:42:14 +0000 Subject: [PATCH 6/6] replaceallgithublinks --- .github/workflows/docs/conf.py | 2 +- .github/workflows/docs/intro.txt | 2 +- README.md | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs/conf.py b/.github/workflows/docs/conf.py index 7394fb2..28c40bb 100644 --- a/.github/workflows/docs/conf.py +++ b/.github/workflows/docs/conf.py @@ -33,7 +33,7 @@ # -- Extension configuration ------------------------------------------------- -pytketdoc_base = "https://cqcl.github.io/tket/pytket/api/" +pytketdoc_base = "https://tket.quantinuum.com/api-docs/" intersphinx_mapping = { "https://docs.python.org/3/": None, diff --git a/.github/workflows/docs/intro.txt b/.github/workflows/docs/intro.txt index 85d4a2c..ce587b0 100644 --- a/.github/workflows/docs/intro.txt +++ b/.github/workflows/docs/intro.txt @@ -6,5 +6,5 @@ platforms. Each extension adds either new methods to the ``pytket`` package to convert between circuit representations, or new backends to which ``pytket`` circuits can be submitted. -.. _pytket: https://cqcl.github.io/tket/pytket/api/ +.. _pytket: https://tket.quantinuum.com/api-docs/ .. _Quantinuum: https://www.quantinuum.com/ diff --git a/README.md b/README.md index a709844..19deb6d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # pytket-pyquil -[Pytket](https://cqcl.github.io/tket/pytket/api/index.html) is a python module for interfacing +[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-pyquil` is an extension to `pytket` that allows `pytket` circuits to be diff --git a/setup.py b/setup.py index d7df69c..49a84ed 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ author_email="tket-support@cambridgequantum.com", python_requires=">=3.8", project_urls={ - "Documentation": "https://cqcl.github.io/pytket-pyquil/api/index.html", + "Documentation": "https://tket.quantinuum.com/extensions/pytket-pyquil/api/index.html", "Source": "https://github.com/CQCL/pytket-pyquil", "Tracker": "https://github.com/CQCL/pytket-pyquil/issues", },