Skip to content

Commit

Permalink
Increment version number to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdwetering committed Jan 30, 2025
1 parent 0a31d2e commit c3d5a1b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
author = 'Aleks Kissinger and John van de Wetering'

# The short X.Y version
version = '0.8.0'
version = '0.9.0'
# The full version, including alpha/beta/rc tags
release = '0.8.0'
release = '0.9.0'


# -- 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.8.0"
__version__ = "0.9.0"

from .graph.graph import Graph
from .circuit import Circuit, gates, id
Expand Down
9 changes: 5 additions & 4 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.8.0",
version="0.9.0",
url="https://github.com/zxcalc/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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
],
Expand All @@ -33,12 +34,12 @@
"pyzx.local_search",
"pyzx.scripts",
],
python_requires='>=3.7',
python_requires='>=3.9',
install_requires=["typing_extensions>=3.7.4",
"numpy>=1.14",
"pyperclip>=1.8.1",
"tqdm>=4.56.0",
"ipywidgets>=7.5,<8",
"ipywidgets>=7.5",
"lark>=1.2.2"],
include_package_data=True,
)

0 comments on commit c3d5a1b

Please sign in to comment.