From e93a0829ef467bd6c9887332b4899e0f7c1ddc80 Mon Sep 17 00:00:00 2001 From: John van de Wetering Date: Thu, 2 Feb 2023 15:35:58 +0100 Subject: [PATCH] Bump version number to 0.7.1 --- doc/conf.py | 4 ++-- pyzx/__init__.py | 2 +- setup.py | 7 ++++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 90d3a623..5d40a8d4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -30,9 +30,9 @@ author = 'Aleks Kissinger and John van de Wetering' # The short X.Y version -version = '0.7.0' +version = '0.7.1' # The full version, including alpha/beta/rc tags -release = '0.7.0' +release = '0.7.1' # -- General configuration --------------------------------------------------- diff --git a/pyzx/__init__.py b/pyzx/__init__.py index aff2a71a..bbd7850a 100644 --- a/pyzx/__init__.py +++ b/pyzx/__init__.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.7.0" +__version__ = "0.7.1" from .graph.graph import Graph from .circuit import Circuit, gates, id diff --git a/setup.py b/setup.py index d3b05691..47ec188f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ name="pyzx", author="Quantomatic", author_email="john@vdwetering.name", - version="0.7.0", + version="0.7.1", url="https://github.com/Quantomatic/pyzx.git", description="Library for quantum circuit rewriting and optimisation using the ZX-calculus", long_description=README, @@ -19,9 +19,10 @@ classifiers=[ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Software Development :: Libraries :: Python Modules", "Development Status :: 4 - Beta", ], @@ -33,7 +34,7 @@ "pyzx.local_search", "pyzx.scripts", ], - python_requires='>=3.6', + python_requires='>=3.7', install_requires=["typing_extensions>=3.7.4", "numpy>=1.14", "pyperclip>=1.8.1",