Skip to content

Commit

Permalink
Bump version number to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdwetering committed Feb 2, 2023
1 parent 7ca2d9a commit e93a082
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyzx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
name="pyzx",
author="Quantomatic",
author_email="[email protected]",
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,
Expand All @@ -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",
],
Expand All @@ -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",
Expand Down

0 comments on commit e93a082

Please sign in to comment.