bump version to 0.4.8
Release / Build, Publish & Release (push) Has been cancelled
CI / Lint, Typecheck & Test (push) Has been cancelled

This commit is contained in:
2026-07-06 13:19:24 +08:00
parent 54aef98f3a
commit 08149d990d
2 changed files with 3 additions and 11 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ license = { text = "MIT" }
name = "pyflowx"
readme = "README.md"
requires-python = ">=3.8"
version = "0.4.7"
version = "0.4.8"
[project.scripts]
emlman = "pyflowx.cli.emlmanager:main"
+2 -10
View File
@@ -60,15 +60,7 @@ from __future__ import annotations
from .command import run_command
from .compose import GraphComposer, compose
from .conditions import (
IS_LINUX,
IS_MACOS,
IS_POSIX,
IS_WINDOWS,
BuiltinConditions,
Condition,
Constants,
)
from .conditions import IS_LINUX, IS_MACOS, IS_POSIX, IS_WINDOWS, BuiltinConditions, Condition, Constants
from .context import Context, build_call_args, describe_injection
from .errors import (
CycleError,
@@ -101,7 +93,7 @@ from .task import (
)
from .tools import ToolSpec, list_subcommands, list_tools, run_tool, tool
__version__ = "0.4.7"
__version__ = "0.4.8"
__all__ = [
"IS_LINUX",