Skip to content

Commit

Permalink
Release 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
superstar54 committed Dec 3, 2024
1 parent aa2e955 commit dd6fc9b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Efficiently design and manage flexible workflows with AiiDA, featuring an intera
## Installation

```console
pip install aiida-workgraph aiida-workgraph-web-ui
pip install aiida-workgraph
```

To install the latest version from source, first clone the repository and then install using `pip`:
Expand Down Expand Up @@ -63,9 +63,14 @@ load_profile()
wg.submit(inputs = {"add1": {"x": 2, "y": 3}, "multiply1": {"y": 4}}, wait=True)
print("Result of multiply1 is", wg.tasks["multiply1"].outputs[0].value)
```

Start the web app, open a terminal and run:
## Web ui
To use the web ui, first install the web ui package:
```console
pip install aiida-workgraph-web-ui
```
Then, start the web app with the following command:
```console

workgraph web start
```

Expand Down
8 changes: 7 additions & 1 deletion docs/gallery/autogen/quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,13 @@ def add_multiply(x, y, z):
# ~~~~~~~~~~~~~~~~~~~~
#
# WorkGraph also provides a web GUI, where you can view and manage the
# workgraph. Open a terminal, and run:
# workgraph. To use the web ui, first install the web ui package:
#
# ::
#
# pip install aiida-workgraph-web-ui
#
# Open a terminal, and run:
#
# ::
#
Expand Down
2 changes: 2 additions & 0 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ The recommended method of installation is to use the Python package manager |pip
.. code-block:: console
$ pip install aiida-workgraph
$ # install web ui package if you want to use the web ui
$ pip install aiida-workgraph-web-ui
This will install the latest stable version that was released to PyPI.

Expand Down
2 changes: 1 addition & 1 deletion src/aiida_workgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
from .task import Task
from .decorator import task, build_task

__version__ = "0.4.6"
__version__ = "0.4.7"

__all__ = ["WorkGraph", "Task", "task", "build_task"]

0 comments on commit dd6fc9b

Please sign in to comment.