Compare commits

...

3 Commits

Author SHA1 Message Date
zhou 1b4f9bfa6a bump version to 0.3.3
CI / Lint, Typecheck & Test (push) Successful in 1m8s
Release / Build, Publish & Release (push) Has been cancelled
2026-07-04 11:16:31 +08:00
zhou 2d39272330 ci(github workflows): update pypi api token secret name
将PyPI发布步骤中的密钥变量名从PYPI_API_TOKEN改为PYPI_TOKEN,保持配置一致性
2026-07-04 11:16:24 +08:00
zhou f699bb9167 chore: 升级pyflowx版本到0.3.2
CI / Lint, Typecheck & Test (push) Successful in 1m19s
2026-07-04 10:50:50 +08:00
5 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
run: uv build
- name: Publish to pypi
run: uv publish --token '${{ secrets.PYPI_API_TOKEN }}'
run: uv publish --token '${{ secrets.PYPI_TOKEN }}'
- name: Create Gitea Release & Upload Assets
env:
+1 -1
View File
@@ -21,7 +21,7 @@ license = { text = "MIT" }
name = "pyflowx"
readme = "README.md"
requires-python = ">=3.8"
version = "0.3.1"
version = "0.3.3"
[project.scripts]
autofmt = "pyflowx.cli.autofmt:main"
+1 -1
View File
@@ -100,7 +100,7 @@ from .task import (
task_template,
)
__version__ = "0.4.1"
__version__ = "0.4.3"
__all__ = [
"IS_LINUX",
+6 -1
View File
@@ -561,7 +561,12 @@ class TestCliRunnerIntegration:
runner = px.CliRunner(aliases={"diamond": graph})
exit_code = runner.run(["diamond"])
assert exit_code == CliExitCode.SUCCESS.value
assert order == ["a", "b", "c", "d"]
# dependency 策略并发调度独立任务,b 与 c 的相对顺序非确定;
# 仅校验拓扑约束:a 最先、d 最后、b/c 介于其间。
assert set(order) == {"a", "b", "c", "d"}
assert order[0] == "a"
assert order[-1] == "d"
assert set(order[1:3]) == {"b", "c"}
def test_mixed_fn_and_cmd_commands(self) -> None:
"""混合 fn 和 cmd 的命令应都能执行."""
Generated
+1 -1
View File
@@ -2736,7 +2736,7 @@ wheels = [
[[package]]
name = "pyflowx"
version = "0.3.0"
version = "0.3.2"
source = { editable = "." }
dependencies = [
{ name = "graphlib-backport", marker = "python_full_version < '3.9'" },