We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 632d75e commit c30e38cCopy full SHA for c30e38c
.bumpversion.cfg
@@ -1,5 +1,5 @@
1
[bumpversion]
2
-current_version = 2.8.0rc2
+current_version = 2.8.0rc3
3
commit = False
4
tag = False
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<build>\d+))?
Dockerfile
@@ -8,6 +8,7 @@ RUN apt-get update && apt-get install --yes git
8
9
RUN pip install pip --upgrade
10
RUN pip install orchestrator-core==${VERSION}
11
+RUN pip uninstall setup-tools
12
13
RUN useradd orchestrator
14
USER orchestrator
orchestrator/__init__.py
@@ -13,7 +13,7 @@
"""This is the orchestrator workflow engine."""
15
16
-__version__ = "2.8.0rc2"
+__version__ = "2.8.0rc3"
17
18
from orchestrator.app import OrchestratorCore
19
from orchestrator.settings import app_settings
0 commit comments