Skip to content

Commit

Permalink
πŸ”– 0.10.5 (#178)
Browse files Browse the repository at this point in the history
* 🎨 Allow starts to be set as a tuple

* ⬆️ Bump python-simpleconf to 0.6 and other deps to latest versions

* βž• Add rtoml to deps (as python-simpleconf 0.6 may not depend on rtoml)

* πŸ”– 0.10.5
  • Loading branch information
pwwang authored Jun 27, 2023
1 parent b54db5d commit f681bab
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 63 deletions.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.10.5

- 🎨 Allow starts to be set as a tuple
- ⬆️ Bump python-simpleconf to 0.6 and other deps to latest versions
- βž• Add rtoml to deps (as python-simpleconf 0.6 may not depend on rtoml)

## 0.10.4

- ⬆️ Bump xqute to 0.2.3
Expand Down
3 changes: 2 additions & 1 deletion pipen/pipen.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,8 @@ def build_proc_relationships(self) -> None:
)

# build proc relationships
self.procs = self.starts[:]
# Allow starts to be set as a tuple
self.procs = list(self.starts)
nexts = set(
sum((proc.nexts or [] for proc in self.procs), []) # type: ignore
)
Expand Down
2 changes: 1 addition & 1 deletion pipen/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Provide version of pipen"""

__version__ = "0.10.4"
__version__ = "0.10.5"
112 changes: 57 additions & 55 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "pipen"
version = "0.10.4"
version = "0.10.5"
description = "A pipeline framework for python"
authors = [ "pwwang <[email protected]>",]
license = "MIT"
Expand All @@ -17,17 +17,18 @@ generate-setup-file = true

[tool.poetry.dependencies]
python = "^3.8"
liquidpy = "^0.8"
liquidpy = "^0.8.1"
pandas = "^1.4"
enlighten = "^1"
argx = "^0.2"
xqute = "^0.2.3"
argx = "^0.2.9"
xqute = "^0.2.4"
## included in xqute
# rich = "^12"
# diot = "^0.1"
# simplug = "^0.0"
## including rtoml
python-simpleconf = {version = "^0.5", extras = ["toml"]}
rtoml = "^0.8"
# May not be rtoml
python-simpleconf = {version = "^0.6", extras = ["toml"]}
pipda = "^0.12"
varname = "^0.11"

Expand Down

0 comments on commit f681bab

Please sign in to comment.