Skip to content

Commit

Permalink
Merge pull request #324 from dlyongemallo/rename_quantomatic_zxcalc
Browse files Browse the repository at this point in the history
Rename Quantomatic links to zxcalc.
  • Loading branch information
jvdwetering authored Jul 15, 2024
2 parents b16e727 + 71e2bb4 commit 446f4c4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
The [ZX-calculus](http://zxcalculus.com) gives us a handy way to represent and work with quantum computations. ZXLive is an interactive tool for working with ZX. Draw graphs or load circuits and apply ZX rules. Intended for experimenting, building proofs, helping to write papers, showing off, or simply learning about ZX and quantum computing. It is powered by the [pyzx](https://github.com/Quantomatic/pyzx) open source library under the hood. The documentation is available at https://zxlive.readthedocs.io/
The [ZX-calculus](http://zxcalculus.com) gives us a handy way to represent and work with quantum computations. ZXLive is an interactive tool for working with ZX. Draw graphs or load circuits and apply ZX rules. Intended for experimenting, building proofs, helping to write papers, showing off, or simply learning about ZX and quantum computing. It is powered by the [pyzx](https://github.com/zxcalc/pyzx) open source library under the hood. The documentation is available at https://zxlive.readthedocs.io/

This project is in a pretty early stage, with lots more to come. Have a look at the [Issue Tracker](https://github.com/Quantomatic/zxlive/issues) to see what's in the pipeline.
This project is in a pretty early stage, with lots more to come. Have a look at the [Issue Tracker](https://github.com/zxcalc/zxlive/issues) to see what's in the pipeline.


## Instructions

To install from source, you need Python >= 3.9 and pip. If you have those, just run:

git clone https://github.com/Quantomatic/zxlive.git
git clone https://github.com/zxcalc/zxlive.git
cd zxlive
pip install .

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
dependencies = [
"PySide6 >= 6.7.2",
"pyzx @ git+https://github.com/Quantomatic/pyzx.git",
"pyzx @ git+https://github.com/zxcalc/pyzx.git",
"networkx",
"numpy",
"shapely",
Expand All @@ -52,9 +52,9 @@ doc = [
]

[project.urls]
Homepage = "https://github.com/Quantomatic/zxlive"
Repository = "https://github.com/Quantomatic/zxlive"
Issue-Tracker = "https://github.com/Quantomatic/zxlive/issues"
Homepage = "https://github.com/zxcalc/zxlive"
Repository = "https://github.com/zxcalc/zxlive"
Issue-Tracker = "https://github.com/zxcalc/zxlive/issues"

[tool.setuptools]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion test/test_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def check_file_format(filename: str) -> None:
def test_proof_cleanup_before_close(app: MainWindow, qtbot: QtBot) -> None:
# Regression test to check that the app doesn't crash when closing a proof tab with a derivation in progress,
# due to accessing the graph after it has been deallocated.
# See https://github.com/Quantomatic/zxlive/issues/218 for context.
# See https://github.com/zxcalc/zxlive/issues/218 for context.
assert app.active_panel is not None
assert isinstance(app.active_panel, GraphEditPanel)
qtbot.mouseClick(app.active_panel.start_derivation, QtCore.Qt.MouseButton.LeftButton)
Expand Down
2 changes: 1 addition & 1 deletion zxlive/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import os
if os.name == 'nt':
import ctypes
myappid = 'quantomatic.zxlive.zxlive.1.0.0' # arbitrary string
myappid = 'zxcalc.zxlive.zxlive.1.0.0' # arbitrary string
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid) # type: ignore


Expand Down

0 comments on commit 446f4c4

Please sign in to comment.