Skip to content

Commit

Permalink
Merge branch 'main' into adds-inactivity-detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagu committed Mar 18, 2024
2 parents 40e1503 + 3efcfbe commit d4050c0
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.9
current_version = 2.0.10
commit = False
message = service version: {current_version} → {new_version}
tag = False
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-image.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build and check image

on: push
on: ["push", "pull_request"]

jobs:
verify-image-build:
Expand Down
2 changes: 1 addition & 1 deletion .osparc/jupyter-math/metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description:
"
key: simcore/services/dynamic/jupyter-math
version: 2.0.9
version: 2.0.10
integration-version: 2.0.0
type: dynamic
authors:
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ USER root

RUN apt-get update && \
apt-get install -y --no-install-recommends \
libopenblas-base \
gfortran \
ffmpeg \
make \
Expand Down Expand Up @@ -98,4 +99,4 @@ RUN echo 'export PATH="/home/${NB_USER}/.venv/bin:$PATH"' >> "/home/${NB_USER}/.

EXPOSE 8888

ENTRYPOINT [ "/bin/bash", "/docker/entrypoint.bash" ]
ENTRYPOINT [ "/bin/bash", "/docker/entrypoint.bash" ]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SHELL = /bin/sh
.DEFAULT_GOAL := help

export DOCKER_IMAGE_NAME ?= jupyter-math
export DOCKER_IMAGE_TAG ?= 2.0.9
export DOCKER_IMAGE_TAG ?= 2.0.10


# PYTHON ENVIRON ---------------------------------------------------------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ make publish-local

### Testing manually
After a new service version has been published on the master deployment, it can be manually tested. For example a Template, called "Test Jupyter-math 2.0.9 ipywidgets" can be used for internal testing on the master deployment.


### Changelog
v2.0.10 (2023-12-11): add openBLAS for faster Octave solution
2 changes: 1 addition & 1 deletion docker-compose-local.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.7'
services:
jupyter-math:
image: simcore/services/dynamic/jupyter-math:2.0.9
image: simcore/services/dynamic/jupyter-math:2.0.10
ports:
- "8888:8888"
environment:
Expand Down

0 comments on commit d4050c0

Please sign in to comment.