diff --git a/_metadata.py b/_metadata.py index cce7b976..665479d6 100644 --- a/_metadata.py +++ b/_metadata.py @@ -1,2 +1,2 @@ -__extension_version__ = "0.6.0" +__extension_version__ = "0.6.1" __extension_name__ = "pytket-cutensornet" diff --git a/docs/changelog.rst b/docs/changelog.rst index 75adb543..72b62b8b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,7 @@ Changelog ------------------ * When using ``simulate`` with ``TTNxGate`` algorithm, the initial partition is obtained using NetworkX instead of KaHyPar by default. This makes setup easier and means that ``TTNxGate`` can now be used when installing from PyPI. KaHyPar can still be used if ``use_kahypar`` from ``Config`` is set to True. +* Updated pytket version requirement to 1.27. 0.6.0 (April 2024) ------------------ diff --git a/setup.py b/setup.py index 6c7d1ebd..5f7b29cc 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.26", "networkx ~= 3.0"], + install_requires=["pytket ~= 1.27", "networkx ~= 3.0"], classifiers=[ "Environment :: Console", "Programming Language :: Python :: 3.10",