Skip to content

Commit 4ac3bc1

Browse files
authored
and fix optional dependencies (previously called trame explicitly, now just called jupyter)
1 parent e6c26f3 commit 4ac3bc1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pyvista.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
DISPLAY: ":99.0"
2525
PYVISTA_OFF_SCREEN: true
2626
PYVISTA_QT_VERSION: 0.11.1
27-
PYVISTA_VERSION: 0.44.1
27+
PYVISTA_VERSION: 0.44.2
2828
QT_DEBUG_PLUGINS: 1
2929

3030
PETSC_ARCH: ${{ matrix.petsc_arch }}

docker/Dockerfile.end-user

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# echo "FROM dolfinx/dolfinx-onbuild:nightly" | docker build -f- .
3535
#
3636

37-
ARG PYVISTA_VERSION=0.44.1
37+
ARG PYVISTA_VERSION=0.44.2
3838

3939
# Used to set the correct PYTHONPATH for the real and complex install of
4040
# DOLFINx
@@ -172,11 +172,11 @@ RUN apt-get -qq update && \
172172
RUN dpkgArch="$(dpkg --print-architecture)"; \
173173
pip install matplotlib; \
174174
case "$dpkgArch" in amd64) \
175-
pip install --no-cache-dir pyvista[trame]==${PYVISTA_VERSION} ;; \
175+
pip install --no-cache-dir pyvista[jupyter]==${PYVISTA_VERSION} ;; \
176176
esac; \
177177
case "$dpkgArch" in arm64) \
178178
pip install --no-cache-dir https://github.com/finsberg/vtk-aarch64/releases/download/vtk-9.3.0-cp312/vtk-9.3.0.dev0-cp312-cp312-linux_aarch64.whl && \
179-
pip install --no-cache-dir pyvista[trame]==${PYVISTA_VERSION} ;; \
179+
pip install --no-cache-dir pyvista[jupyter]==${PYVISTA_VERSION} ;; \
180180
esac; \
181181
pip cache purge
182182

0 commit comments

Comments
 (0)