Skip to content

Commit ed435c6

Browse files
committed
Bump versions to release candidates
1 parent 9032091 commit ed435c6

4 files changed

Lines changed: 8 additions & 14 deletions

File tree

.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
NL_BIOMERO_VERSION=1.5.0
1+
NL_BIOMERO_VERSION=1.6.0-beta.1
22
BIOMERO_IMPORTER_VERSION=1.2.1
3-
BIOMERO_VERSION=v2.5.3
3+
BIOMERO_VERSION=2.6.0b2
44
OMERO_ZARR_PIXEL_BUFFER_VERSION=0.6.1
55
OMERO_FORMS_VERSION=2.2.0
6-
OMERO_BIOMERO_VERSION=1.3.2
6+
OMERO_BIOMERO_VERSION=1.4.0a1
77
METABASE_SITE_URL=http://localhost:3000
88
METABASE_SECRET_KEY=1f8e2c8ae6450b1035fe5ac9219a8f34702ab3cb01b1c3c767cfb55922c1d881
99
METABASE_IMPORTS_DB_PAGE_DASHBOARD_ID=6

biomeroworker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN yum -y install ack
4343
# force zarr < 3 for compatibility w/ omero-cli-zarr by installing biomero AFTER the importer
4444
RUN $VIRTUAL_ENV/bin/python -m pip install --upgrade pip \
4545
&& $VIRTUAL_ENV/bin/python -m pip install --ignore-requires-python biomero-importer==${BIOMERO_IMPORTER_VERSION} \
46-
&& $VIRTUAL_ENV/bin/python -m pip install "biomero[full]==2.6.0a1"
46+
&& $VIRTUAL_ENV/bin/python -m pip install "biomero[full]==${BIOMERO_VERSION}"
4747

4848
## Adjust processor code with BIOMERO Processor
4949
# This version forwards HTTP(S) PROXY environment variables to the subprocesses (scripts)

server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ ADD server/00-restore-config.sh* /startup/
2121

2222
# Clone specific release version
2323
# We don't need the example scripts
24-
ADD https://api.github.com/repos/nl-bioimaging/biomero-scripts/commits?sha=master&per_page=1 /tmp/biomero_branch_commits
24+
ADD https://api.github.com/repos/nl-bioimaging/biomero-scripts/commits?sha=v2.6.0-beta.2&per_page=1 /tmp/biomero_branch_commits
2525
RUN cd $OMERO_DIST/lib/scripts/ && \
26-
git clone --depth 1 --branch master --single-branch https://github.com/NL-BioImaging/biomero-scripts.git biomero && \
26+
git clone --depth 1 --branch v2.6.0-beta.2 --single-branch https://github.com/NL-BioImaging/biomero-scripts.git biomero && \
2727
rm -f biomero/admin/Example_Minimal_Slurm_Script.py && \
2828
rm -f biomero/__workflows/SLURM_CellPose_Segmentation.py
2929

web/Dockerfile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,10 @@ COPY biomeroworker/slurm-config.ini /etc/slurm-config.ini
4242
### Install OMERO.biomero first ###
4343
### BIOMERO.importer and BIOMERO.analyzer will be installed as a dependency of OMERO.biomero ###
4444

45-
# Install OMERO.biomero from main branch on GitHub
46-
ADD "https://api.github.com/repos/NL-BioImaging/OMERO.biomero/commits?sha=main&per_page=1" /tmp/biomero_branch_commits
47-
RUN git clone -b main --depth 1 https://github.com/NL-BioImaging/OMERO.biomero.git /opt/omero/web/OMERO.biomero \
48-
&& /opt/omero/web/venv3/bin/pip install -e /opt/omero/web/OMERO.biomero \
45+
# Install released OMERO.biomero from PyPI
46+
RUN /opt/omero/web/venv3/bin/pip install omero-biomero==${OMERO_BIOMERO_VERSION} \
4947
&& /opt/omero/web/venv3/bin/omero-biomero-setup
5048

51-
# Install released OMERO.biomero from PyPI (commented out, use for releases):
52-
# RUN /opt/omero/web/venv3/bin/pip install omero-biomero==${OMERO_BIOMERO_VERSION} \
53-
# && /opt/omero/web/venv3/bin/omero-biomero-setup
54-
5549
### Install OMERO.forms ###
5650

5751
# Install OMERO.forms from PyPI

0 commit comments

Comments
 (0)