Skip to content

Commit 2eba441

Browse files
authored
bump version to 0.4.1 (#77)
1 parent afece59 commit 2eba441

File tree

6 files changed

+11
-47
lines changed

6 files changed

+11
-47
lines changed

.github/workflows/build-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
build:
2121
# The type of runner that the job will run on
2222
runs-on: ubuntu-latest
23-
container: dokken92/dolfinx_custom:02052022
23+
container: dokken92/dolfinx_custom:v0.4.1
2424

2525
env:
2626
HDF5_MPI: "ON"
2727
CC: mpicc
28-
HDF5_DIR: "/usr/lib/x86_64-linux-gnu/hdf5/mpich/"
28+
HDF5_DIR: "/usr/local/"
2929
DISPLAY: ":99.0"
3030
PYVISTA_OFF_SCREEN: true
3131

.github/workflows/docker-image.yml

-40
This file was deleted.

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM dokken92/dolfinx_custom:02052022
1+
FROM dokken92/dolfinx_custom:v0.4.1
22

33
# create user with a home directory
44
ARG NB_USER

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM dolfinx/lab:v0.4.0
1+
FROM dolfinx/lab:v0.4.1
22

33
WORKDIR /tmp/
44

55
ADD requirements.txt /tmp/requirements.txt
66

77
# Install dependencies
8-
RUN HDF5_MPI="ON" HDF5_DIR="/usr/lib/x86_64-linux-gnu/hdf5/mpich/" CC=mpicc pip3 install --no-cache-dir -r requirements.txt
8+
RUN HDF5_MPI="ON" HDF5_DIR="/usr/local/" CC=mpicc pip3 install --no-cache-dir -r requirements.txt
99

1010
# Activate plotting
1111
RUN jupyter nbextension enable --py --sys-prefix ipygany

docker/requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ pandas
1818

1919
# Visualization with Pyvista
2020
matplotlib
21+
22+
# Until VTK is released with wheels for python 3.10
23+
--find-links https://wheels.pyvista.org/
2124
pyvista
25+
2226
pythreejs
2327
ipygany
2428

fem.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ Docker is a software that uses *containers* to supply software across different
3333
All notebooks can be converted to python files using [nbconvert](https://nbconvert.readthedocs.io/en/latest/).
3434

3535
### Tutorial compatible docker images
36-
The tutorial uses several dependencies for meshing, plotting and timings. A compatible `JupyterLab` image is available at [DockerHub/dokken92/dolfinx_custom:labv0.4.0](https://hub.docker.com/r/dokken92/dolfinx_custom/tags)
36+
The tutorial uses several dependencies for meshing, plotting and timings. A compatible `JupyterLab` image is available at [DockerHub/dokken92/dolfinx_custom:v0.4.1](https://hub.docker.com/r/dokken92/dolfinx_custom/tags)
3737

3838
To use the notebookes in this tutorial with DOLFINx on your own computer, you should use the docker image using the following command
3939
```
40-
docker run --init -p 8888:8888 -v "$(pwd)":/root/shared dokken92/dolfinx_custom:labv0.4.0
40+
docker run --init -p 8888:8888 -v "$(pwd)":/root/shared dokken92/dolfinx_custom:v0.4.1
4141
```
4242
The tutorials can also be exported as a notebook or PDF by clicking the ![Download](save.png)-symbol in the top right corner of the relevant tutorialThe notebook can in turn be used with a Python kernel which has DOLFINx.
4343

0 commit comments

Comments
 (0)