diff --git a/pyproject.toml b/pyproject.toml index 4ef58a2..6082d15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "zxlive" -version = "0.2.0" +version = "0.3.0" description = "An interactive tool for the ZX-calculus" readme = "README.md" requires-python = ">=3.9" @@ -29,7 +29,7 @@ classifiers = [ ] dependencies = [ "PySide6 >= 6.7.2", - "pyzx @ git+https://github.com/zxcalc/pyzx.git", + "pyzx>=0.9.0", "networkx", "numpy", "shapely", diff --git a/zxlive/app.py b/zxlive/app.py index 11a423a..e2483f4 100644 --- a/zxlive/app.py +++ b/zxlive/app.py @@ -20,7 +20,7 @@ from PySide6.QtGui import QIcon import sys -# sys.path.insert(0, '../pyzx') # So that it can find a local copy of pyzx +sys.path.insert(0, '../pyzx') # So that it can find a local copy of pyzx from .mainwindow import MainWindow from .common import get_data, GraphT @@ -48,7 +48,7 @@ def __init__(self) -> None: self.setFont(display_setting.font) self.setApplicationName('ZXLive') self.setDesktopFileName('ZXLive') - self.setApplicationVersion('0.2.0') # TODO: read this from pyproject.toml if possible + self.setApplicationVersion('0.3.0') # TODO: read this from pyproject.toml if possible self.main_window = MainWindow() self.main_window.setWindowIcon(QIcon(get_data('icons/logo.png'))) self.setWindowIcon(self.main_window.windowIcon())