Skip to content

Commit

Permalink
Bumped Nwa-stdlib, oauth2-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
pboers1988 committed Mar 23, 2021
1 parent 348c3e0 commit a00b6c6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.2rc6
current_version = 0.0.2rc7
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion orchestrator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

"""This is the orchestrator workflow engine."""

__version__ = "0.0.2rc6"
__version__ = "0.0.2rc7"

from orchestrator.app import OrchestratorCore
from orchestrator.settings import app_settings, oauth2_settings
Expand Down
2 changes: 1 addition & 1 deletion orchestrator/services/processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _db_log_process_ex(pid: UUID, ex: Exception) -> None:
if p.last_status != ProcessStatus.WAITING:
p.last_status = ProcessStatus.FAILED
p.failed_reason = str(ex)
p.traceback = show_ex(ex)
p.traceback = show_ex(ex) # type: ignore
db.session.add(p)
try:
db.session.commit()
Expand Down
2 changes: 1 addition & 1 deletion orchestrator/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def unwrap(self) -> S:
>>> Complete('a').unwrap()
'a'
"""
return self._fold(identity, identity, identity, identity, identity, identity, identity)
return self._fold(identity, identity, identity, identity, identity, identity, identity) # type: ignore

def issuccess(self) -> bool:
"""Test if this instance is Success.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ requires = [
"structlog~=20.2.0",
"typer-cli~=0.0.11",
"uvicorn[standard]~=0.13.3",
"nwa-stdlib~=1.1.1",
"oauth2-lib~=1.0.1"
"nwa-stdlib~=1.1.2",
"oauth2-lib~=1.0.2"
]
description-file = "README.md"
requires-python = ">=3.6,<3.9"
Expand Down

0 comments on commit a00b6c6

Please sign in to comment.