Skip to content

Commit

Permalink
Increment version number, and set PyZX to use PyPI version instead of…
Browse files Browse the repository at this point in the history
… github version
  • Loading branch information
jvdwetering committed Jan 31, 2025
1 parent 545168d commit 536f1f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions zxlive/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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())
Expand Down

0 comments on commit 536f1f7

Please sign in to comment.