-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ➖ Remove reduandant deps * 🔖 0.3.2
- Loading branch information
Showing
5 changed files
with
83 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.3.2 | ||
|
||
- ⬆️ Upgrade rtoml to v0.8 | ||
|
||
## 0.3.1 | ||
|
||
- 🩹 Hide config meta data in pipeline information | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Provide version of pipen""" | ||
|
||
__version__ = "0.3.1" | ||
__version__ = "0.3.2" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" | |
|
||
[tool.poetry] | ||
name = "pipen" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
description = "A pipeline framework for python" | ||
authors = [ "pwwang <[email protected]>",] | ||
license = "MIT" | ||
|
@@ -14,21 +14,23 @@ repository = "https://github.com/pwwang/pipen" | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.7.1" # align with datar/pandas | ||
rtoml = "^0.7" | ||
liquidpy = "^0.7" | ||
pandas = "^1" | ||
rich = "^12" | ||
python-slugify = "^6" | ||
enlighten = "^1" | ||
cached-property = "^1" | ||
more-itertools = "^8" | ||
varname = "^0.8" | ||
diot = "^0.1" | ||
pyparam = "^0.5" | ||
xqute = "^0.0" | ||
python-simpleconf = "^0.5" | ||
simplug = "^0.0" | ||
xqute = "^0.1" | ||
## included in xqute | ||
# diot = "^0.1" | ||
# simplug = "^0.0" | ||
## including rtoml | ||
python-simpleconf = {version = "^0.5", extras = ["toml"]} | ||
pipda = "^0.5" | ||
## included in pipda | ||
# varname = "^0.8" | ||
|
||
[tool.poetry.dev-dependencies] | ||
openpyxl = "^3" | ||
|