flowsh-cli 0.2.1__tar.gz → 0.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flowsh-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Generate Bash harness scripts from workflow YAML files.
5
5
  License-Expression: MIT
6
6
  Classifier: Programming Language :: Python :: 3.11
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "flowsh-cli"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Generate Bash harness scripts from workflow YAML files."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -39,7 +39,6 @@ testpaths = ["tests"]
39
39
  [tool.ruff]
40
40
  line-length = 100
41
41
  target-version = "py311"
42
- exclude = ["scripts/"]
43
42
 
44
43
  [tool.ruff.lint]
45
44
  select = ["E", "F", "I", "UP", "B", "SIM"]
@@ -3,7 +3,7 @@
3
3
  from flowsh_cli.models import Workflow, WorkflowParseError, parse_workflows
4
4
  from flowsh_cli.render import harness_path, render_harness
5
5
 
6
- __version__ = "0.2.1"
6
+ __version__ = "0.2.2"
7
7
 
8
8
  __all__ = [
9
9
  "Workflow",
File without changes