Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.8.0 alpha.5 #586

Merged
merged 2 commits into from
Nov 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm/reana/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ keywords:
- reusable-science
type: application
# Chart version.
version: 0.8.0-alpha.4
version: 0.8.0-alpha.5
kubeVersion: ">= 1.13.0-0 < 1.22.0-0"
dependencies:
- name: traefik
Expand Down
10 changes: 5 additions & 5 deletions helm/reana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ components:
docs_url: https://docs.reana.io
forum_url: https://forum.reana.io
imagePullPolicy: IfNotPresent
image: reanahub/reana-ui:0.8.0-alpha.3
image: reanahub/reana-ui:0.8.0-alpha.4
reana_db:
enabled: true
reana_server:
imagePullPolicy: IfNotPresent
image: reanahub/reana-server:0.8.0-alpha.4
image: reanahub/reana-server:0.8.0-alpha.6
environment:
REANA_MAX_CONCURRENT_BATCH_WORKFLOWS: 30
REANA_SCHEDULER_REQUEUE_SLEEP: 15
Expand All @@ -72,19 +72,19 @@ components:
threads: 4
reana_workflow_controller:
imagePullPolicy: IfNotPresent
image: reanahub/reana-workflow-controller:0.8.0-alpha.4
image: reanahub/reana-workflow-controller:0.8.0-alpha.5
environment:
SHARED_VOLUME_PATH: /var/reana
reana_workflow_engine_cwl:
image: reanahub/reana-workflow-engine-cwl:0.8.0-alpha.4
reana_workflow_engine_yadage:
image: reanahub/reana-workflow-engine-yadage:0.8.0-alpha.4
image: reanahub/reana-workflow-engine-yadage:0.8.0-alpha.5
reana_workflow_engine_serial:
image: reanahub/reana-workflow-engine-serial:0.8.0-alpha.4
reana_workflow_engine_snakemake:
image: reanahub/reana-workflow-engine-snakemake:0.8.0-alpha.2
reana_job_controller:
image: reanahub/reana-job-controller:0.8.0-alpha.5
image: reanahub/reana-job-controller:0.8.0-alpha.7
reana_message_broker:
imagePullPolicy: IfNotPresent
image: reanahub/reana-message-broker:0.8.0-alpha.2
Expand Down
2 changes: 1 addition & 1 deletion reana/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.8.0a4"
__version__ = "0.8.0a5"
10 changes: 5 additions & 5 deletions scripts/prefetch-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ for image in \
maildev/maildev:1.1.0 \
postgres:12.8 \
redis:5.0.5 \
reanahub/reana-job-controller:0.8.0-alpha.5 \
reanahub/reana-job-controller:0.8.0-alpha.7 \
reanahub/reana-message-broker:0.8.0-alpha.2 \
reanahub/reana-server:0.8.0-alpha.4 \
reanahub/reana-ui:0.8.0-alpha.3 \
reanahub/reana-workflow-controller:0.8.0-alpha.4 \
reanahub/reana-server:0.8.0-alpha.6 \
reanahub/reana-ui:0.8.0-alpha.4 \
reanahub/reana-workflow-controller:0.8.0-alpha.5 \
reanahub/reana-workflow-engine-cwl:0.8.0-alpha.4 \
reanahub/reana-workflow-engine-serial:0.8.0-alpha.4 \
reanahub/reana-workflow-engine-snakemake:0.8.0-alpha.2 \
reanahub/reana-workflow-engine-yadage:0.8.0-alpha.4 \
reanahub/reana-workflow-engine-yadage:0.8.0-alpha.5 \
; do
docker pull $image
kind load docker-image $image
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ source-dir = docs/
build-dir = docs/_build
all_files = 1

[bdist_wheel]
universal = 1

Comment on lines -15 to -17
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a few packages missing after this PR:

$ rg -i "universal = 1"  
reana-workflow-engine-snakemake/setup.cfg
16:universal = 1

reana-message-broker/setup.cfg
16:universal = 1

reana-workflow-engine-serial/setup.cfg
16:universal = 1

reana-workflow-engine-cwl/setup.cfg
16:universal = 1

pytest-reana/setup.cfg
18:universal = 1

Should we go ahead so we can close #559?

[check-manifest]
ignore =
**/*/Chart.lock
Expand Down