Skip to content

Commit

Permalink
Merge 533e906 into 6d75852
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Oct 20, 2020
2 parents 6d75852 + 533e906 commit 3cd997d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
21 changes: 11 additions & 10 deletions CHANGES.rst
@@ -1,16 +1,17 @@
Changes
=======

Version master (UNRELEASED)
---------------------------

- Uses python3.8
- Pins all Python dependencies allowing to easily rebuild component images at later times.
- Allows to execute workflow from specified step.
- Allows specifying unpacked Docker images as workflow step requirement.
- Adds ``kubernetes_uid`` field.
- Adds VOMS proxy support as a new authentication method.
- Add Black formatter support.
Version 0.7.0 (2020-10-20)
--------------------------

- Adds possibility to execute workflow from specified step.
- Adds option to specify unpacked Docker images as workflow step requirement.
- Adds option to specify Kubernetes UID for jobs.
- Adds support for VOMS proxy as a new authentication method.
- Adds pinning of all Python dependencies allowing to easily rebuild component images at later times.
- Changes base image to use Python 3.8.
- Changes code formatting to respect ``black`` coding style.
- Changes documentation to single-page layout.

Version 0.6.1 (2020-05-25)
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion reana_workflow_engine_serial/version.py
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.7.0a1"
__version__ = "0.7.0"
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -25,7 +25,7 @@ pyrsistent==0.16.0 # via jsonschema
python-dateutil==2.8.1 # via bravado, bravado-core
pytz==2020.1 # via bravado-core
pyyaml==5.3.1 # via bravado, bravado-core, reana-commons
reana-commons==0.7.0a4 # via reana-workflow-engine-serial (setup.py)
reana-commons==0.7.0 # via reana-workflow-engine-serial (setup.py)
requests==2.24.0 # via bravado
rfc3987==1.3.8 # via jsonschema
simplejson==3.17.2 # via bravado, bravado-core
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -19,7 +19,7 @@
history = open("CHANGES.rst").read()

tests_require = [
"pytest-reana>=0.7.0.dev20191219,<0.8.0",
"pytest-reana>=0.7.0,<0.8.0",
]

extras_require = {
Expand All @@ -40,7 +40,7 @@

install_requires = [
"click>=7",
"reana-commons>=0.7.0a4,<0.8.0",
"reana-commons>=0.7.0,<0.8.0",
]

packages = find_packages()
Expand Down

0 comments on commit 3cd997d

Please sign in to comment.