Skip to content

Commit

Permalink
0.9.1 (#162)
Browse files Browse the repository at this point in the history
* ⬆️ Bump xqute to 0.2.1

* 🔖 0.9.1
  • Loading branch information
pwwang authored Apr 14, 2023
1 parent df99f23 commit 9a122a9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.9.1

- ⬆️ Bump xqute to 0.2.1

## 0.9.0

- ⬆️ Bump xqute to 0.2 so we can have slurm and ssh schedulers available
Expand Down
7 changes: 7 additions & 0 deletions pipen/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

from diot import Diot
from xqute import JobErrorStrategy
from xqute.utils import logger as xqute_logger

# Remove the rich handler
_xqute_handlers = xqute_logger.handlers
if _xqute_handlers:
# The very first handler is the rich handler
xqute_logger.removeHandler(_xqute_handlers[0])

LOGGER_NAME = "main"
CONFIG_FILES = (
Expand Down
1 change: 0 additions & 1 deletion pipen/proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ async def init(self) -> None:
self.xqute = Xqute(
self.scheduler,
job_metadir=self.workdir,
loglevel="NOTSET",
job_submission_batch=self.submission_batch,
job_error_strategy=self.error_strategy
or self.pipeline.config.error_strategy,
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.9.0"
__version__ = "0.9.1"
8 changes: 4 additions & 4 deletions poetry.lock

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

4 changes: 2 additions & 2 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.9.0"
version = "0.9.1"
description = "A pipeline framework for python"
authors = [ "pwwang <[email protected]>",]
license = "MIT"
Expand All @@ -21,7 +21,7 @@ liquidpy = "^0.8"
pandas = "^1.4"
enlighten = "^1"
argx = "^0.2"
xqute = "^0.2"
xqute = "^0.2.1"
## included in xqute
# rich = "^12"
# diot = "^0.1"
Expand Down

0 comments on commit 9a122a9

Please sign in to comment.