Skip to content

Commit

Permalink
Merge pull request #155 from CQCL/release/1.18
Browse files Browse the repository at this point in the history
Release/1.18
  • Loading branch information
cqc-melf authored Aug 8, 2023
2 parents d7acc0a + b842254 commit ca50678
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _metadata.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__extension_version__ = "0.41.0"
__extension_version__ = "0.42.0"
__extension_name__ = "pytket-qiskit"
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
~~~~~~~~~

0.42.0 (August 2023)
--------------------

* Update pytket version requirement to 1.18.

0.41.0 (July 2023)
------------------

Expand Down
13 changes: 12 additions & 1 deletion docs/intro.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ An example using the shots-based :py:class:`AerBackend` simulator is shown below
::

from pytket.extensions.qiskit import AerBackend
from pytket import Circuit

backend = AerBackend()
circ = Circuit(2).H(0).CX(0, 1).measure_all()
Expand Down Expand Up @@ -54,7 +55,17 @@ With the exception of the Aer simulators, accessing devices and simulators throu

Once you have created an account you can obtain an API token which you can use to configure your credentials locally.

.. note:: The documentation below is correct as of pytket-qiskit version 0.40.0. In the 0.40.0 release pytket-qiskit moved to using the `qiskit-ibm-provider <https://qiskit.org/ecosystem/ibm-provider/tutorials/Migration_Guide_from_qiskit-ibmq-provider.html>`_. In pytket-qiskit versions 0.39.0 and older the parameters ``hub``, ``group`` and ``project`` were handled separately instead of a single ``instance`` string as in 0.40.0 and newer.
In this section we are assuming that you have set the following variables with the corresponding values:

::

# Replace the placeholders with your actual values
ibm_token = '<your_ibm_token_here>'
hub = '<your_hub_here>'
group = '<your_group_here>'
project = '<your_project_here>'

.. note:: The documentation below is correct as of pytket-qiskit version 0.40.0 and newer. In the 0.40.0 release pytket-qiskit moved to using the `qiskit-ibm-provider <https://qiskit.org/ecosystem/ibm-provider/tutorials/Migration_Guide_from_qiskit-ibmq-provider.html>`_. In pytket-qiskit versions 0.39.0 and older the parameters ``hub``, ``group`` and ``project`` were handled separately instead of a single ``instance`` string as in 0.40.0 and newer.

::

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
packages=find_namespace_packages(include=["pytket.*"]),
include_package_data=True,
install_requires=[
"pytket ~= 1.17",
"pytket ~= 1.18",
"qiskit ~= 0.43.1",
"qiskit-ibm-runtime ~= 0.11.1",
"qiskit-aer ~= 0.12.0",
Expand Down

0 comments on commit ca50678

Please sign in to comment.