Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Merge 354115a into c51c086
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Jun 2, 2020
2 parents c51c086 + 354115a commit 9c750d5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -25,7 +25,7 @@ matrix:
before_install:
- pip install -r requirements-dev.txt
- travis_retry pip install --upgrade pip setuptools py
- travis_retry pip install twine wheel coveralls requirements-builder
- travis_retry pip install twine wheel coveralls requirements-builder==0.3.0
- requirements-builder -e $EXTRAS --level=min setup.py > .travis-lowest-requirements.txt
- requirements-builder -e $EXTRAS --level=pypi setup.py > .travis-release-requirements.txt
- requirements-builder -e $EXTRAS --level=dev --req requirements-dev.txt setup.py > .travis-devel-requirements.txt
Expand Down
14 changes: 7 additions & 7 deletions reana_cluster/configurations/reana-cluster-minikube.yaml
Expand Up @@ -12,21 +12,21 @@ cluster:
components:
reana-workflow-controller:
type: "docker"
image: "reanahub/reana-workflow-controller:0.6.0"
image: "reanahub/reana-workflow-controller:latest"
environment:
- <<: *db_base_config
- SHARED_VOLUME_PATH: "/var/reana"
- REANA_JOB_CONTROLLER_IMAGE: "reanahub/reana-job-controller:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_CWL: "reanahub/reana-workflow-engine-cwl:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_YADAGE: "reanahub/reana-workflow-engine-yadage:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_SERIAL: "reanahub/reana-workflow-engine-serial:0.6.0"
- REANA_JOB_CONTROLLER_IMAGE: "reanahub/reana-job-controller:latest"
- REANA_WORKFLOW_ENGINE_IMAGE_CWL: "reanahub/reana-workflow-engine-cwl:latest"
- REANA_WORKFLOW_ENGINE_IMAGE_YADAGE: "reanahub/reana-workflow-engine-yadage:latest"
- REANA_WORKFLOW_ENGINE_IMAGE_SERIAL: "reanahub/reana-workflow-engine-serial:latest"

reana-server:
type: "docker"
image: "reanahub/reana-server:0.6.0"
image: "reanahub/reana-server:latest"
environment:
- <<: *db_base_config

reana-message-broker:
type: "docker"
image: "reanahub/reana-message-broker:0.6.0"
image: "reanahub/reana-message-broker:latest"
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -19,6 +19,7 @@
history = open('CHANGES.rst').read()

tests_require = [
'mock>=3.0,<4.0',
'pytest-reana>=0.6.0,<0.7.0',
]

Expand All @@ -45,7 +46,7 @@
'click>=7',
'Jinja2>=2.9.6,<2.11',
'PyYAML>=5.1',
'reana-commons[kubernetes]>=0.6.0,<0.7.0',
'reana-commons[kubernetes]>=0.6.1,<0.7.0',
'tablib>=0.12.1,<0.13',
]

Expand Down

0 comments on commit 9c750d5

Please sign in to comment.