Skip to content

Commit

Permalink
expose more objects
Browse files Browse the repository at this point in the history
  • Loading branch information
goFrendiAsgard committed Dec 5, 2023
1 parent 846b473 commit 5d6c64b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "zrb"
version = "0.0.122"
version = "0.0.123"
authors = [
{ name="Go Frendi Gunawan", email="gofrendiasgard@gmail.com" },
]
Expand Down
10 changes: 10 additions & 0 deletions src/zrb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from zrb.runner import runner
from zrb.task.decorator import python_task
from zrb.task.any_task import AnyTask
from zrb.task.any_task_event_handler import (
OnTriggered, OnWaiting, OnSkipped, OnStarted, OnReady, OnRetry, OnFailed
)
from zrb.task.parallel import AnyParallel, Parallel
from zrb.task.task import Task
from zrb.task.cmd_task import CmdTask
Expand Down Expand Up @@ -34,6 +37,13 @@

assert runner
assert AnyTask
assert OnTriggered
assert OnWaiting
assert OnSkipped
assert OnStarted
assert OnReady
assert OnRetry
assert OnFailed
assert AnyParallel
assert Parallel
assert python_task
Expand Down
2 changes: 1 addition & 1 deletion src/zrb/builtin/generator/project/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To learn more about the project, you can visit [Zrb getting started page](https:

To start working with PascalZrbProjectName, you need to have:

- Python 3.9 or higher
- Python 3.10 or higher
- Pip
- Venv

Expand Down
2 changes: 1 addition & 1 deletion src/zrb/task/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Checker(BaseTask):

def __init__(
self,
name: str = 'port-check',
name: str = 'check',
group: Optional[Group] = None,
inputs: Iterable[AnyInput] = [],
envs: Iterable[Env] = [],
Expand Down

0 comments on commit 5d6c64b

Please sign in to comment.