Skip to content

Commit

Permalink
0.3.6 (#134)
Browse files Browse the repository at this point in the history
* ⬆️ Upgrade pipda to 0.7.1, varname to 0.9.1, datar to 0.9

* 🔖 0.3.6

* 👷 Try adding python3.10 back to CI
  • Loading branch information
pwwang authored Sep 22, 2022
1 parent 553b099 commit eb8d262
Show file tree
Hide file tree
Showing 6 changed files with 266 additions and 258 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
if: "! contains(github.event.head_commit.message, 'wip')"
strategy:
matrix:
## dependencies install is too slow
# python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9]
# dependencies install is too slow
python-version: [3.7, 3.8, 3.9, "3.10"]
# python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.6

- ⬆️ Upgrade pipda to 0.7.2, varname to 0.9.1, datar to 0.9

## 0.3.5

- 🐛 Fix `nexts` being inherited for `Proc` subclasses
Expand Down
4 changes: 3 additions & 1 deletion pipen/pipen.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,9 @@ def build_proc_relationships(self) -> None:

# build proc relationships
self.procs = self.starts[:]
nexts = set(sum((proc.nexts or [] for proc in self.procs), []))
nexts = set(
sum((proc.nexts or [] for proc in self.procs), []) # type: ignore
)
logger.debug("")
logger.debug("Building process relationships:")
logger.debug("- Start processes: %s", self.procs)
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.3.5"
__version__ = "0.3.6"
Loading

0 comments on commit eb8d262

Please sign in to comment.