Skip to content

Commit 611a3b5

Browse files
committed
release: 0.7.0
1 parent 024a77a commit 611a3b5

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

CHANGES.rst

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
Changes
22
=======
33

4-
Version master (UNRELEASED)
5-
---------------------------
6-
7-
- Uses python3.8
8-
- Pins all Python dependencies allowing to easily rebuild component images at later times.
9-
- Allows specifying unpacked Docker images as workflow step requirement.
10-
- Handles new workflow operational options.
11-
- Adds VOMS proxy support as a new authentication method.
12-
- Add Black formatter support.
4+
Version 0.7.0 (2020-10-20)
5+
--------------------------
6+
7+
- Adds pinning of all Python dependencies allowing to easily rebuild component images at later times.
8+
- Adds option to specify unpacked Docker images as workflow step requirement.
9+
- Adds support for handling new workflow operational options.
10+
- Adds support for VOMS proxy as a new authentication method.
11+
- Changes base image to use Python 3.8.
12+
- Changes code formatting to respect ``black`` coding style.
13+
- Changes documentation to single-page layout.
1314

1415
Version 0.6.1 (2020-05-25)
1516
--------------------------

reana_workflow_engine_cwl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
from __future__ import absolute_import, print_function
1616

17-
__version__ = "0.7.0a1"
17+
__version__ = "0.7.0"

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile
33
# To update, run:
44
#
5-
# pip-compile
5+
# pip-compile --output-file=requirements.txt setup.py
66
#
77
amqp==2.6.1 # via kombu
88
attrs==19.3.0 # via jsonschema
@@ -28,7 +28,7 @@ kombu==4.6.11 # via reana-commons
2828
lockfile==0.12.2 # via schema-salad
2929
lxml==4.5.2 # via prov
3030
mistune==0.8.4 # via schema-salad
31-
mock==4.0.2 # via reana-commons
31+
mock==3.0.5 # via reana-commons
3232
monotonic==1.5 # via bravado
3333
msgpack-python==0.5.6 # via bravado
3434
msgpack==1.0.0 # via bravado-core
@@ -44,15 +44,15 @@ pytz==2020.1 # via bravado-core
4444
pyyaml==5.3.1 # via bravado, bravado-core, reana-commons
4545
rdflib-jsonld==0.4.0 # via schema-salad
4646
rdflib==4.2.2 # via cwltool, prov, rdflib-jsonld, schema-salad
47-
reana-commons==0.7.0a4 # via reana-workflow-engine-cwl (setup.py)
47+
reana-commons==0.7.0 # via reana-workflow-engine-cwl (setup.py)
4848
requests==2.24.0 # via bravado, cachecontrol, cwltool, schema-salad
4949
rfc3987==1.3.8 # via jsonschema
5050
ruamel.yaml==0.16.0 # via cwltool, schema-salad
5151
scandir==1.10.0 # via cwltool
5252
schema-salad==4.5.20191023134839 # via cwltool, reana-workflow-engine-cwl (setup.py)
5353
shellescape==3.4.1 # via cwltool
5454
simplejson==3.17.2 # via bravado, bravado-core
55-
six==1.15.0 # via bravado, bravado-core, cwltool, isodate, jsonschema, pathlib2, prov, pyrsistent, python-dateutil, schema-salad, sqlalchemy-utils
55+
six==1.15.0 # via bravado, bravado-core, cwltool, isodate, jsonschema, mock, pathlib2, prov, pyrsistent, python-dateutil, schema-salad, sqlalchemy-utils
5656
sqlalchemy-utils==0.36.8 # via reana-workflow-engine-cwl (setup.py)
5757
sqlalchemy==1.3.18 # via reana-workflow-engine-cwl (setup.py), sqlalchemy-utils
5858
strict-rfc3339==0.7 # via jsonschema

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
history = open("CHANGES.rst").read()
2020

2121
tests_require = [
22-
"pytest-reana>=0.7.0.dev20191219,<0.8.0",
22+
"pytest-reana>=0.7.0,<0.8.0",
2323
]
2424

2525
extras_require = {
@@ -44,7 +44,7 @@
4444
"click>=7",
4545
"SQLAlchemy>=1.3.7",
4646
"SQLAlchemy-Utils>=0.34.2",
47-
"reana-commons>=0.7.0a4,<0.8.0",
47+
"reana-commons>=0.7.0,<0.8.0",
4848
]
4949

5050
packages = find_packages()

0 commit comments

Comments
 (0)