From a125f815002a24fab02a62b847cd0d240ff994d4 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Tue, 5 Sep 2023 05:39:02 +0100 Subject: [PATCH] fix docker image building for openmc+dagmc combination (#2678) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae59ec0894..fa223bd228 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,7 +91,7 @@ RUN cd $HOME \ RUN if [ "$build_dagmc" = "on" ]; then \ # Install addition packages required for DAGMC apt-get -y install libeigen3-dev libnetcdf-dev libtbb-dev libglfw3-dev \ - && pip install --upgrade numpy cython \ + && pip install --upgrade numpy "cython<3.0" \ # Clone and install EMBREE && mkdir -p $HOME/EMBREE && cd $HOME/EMBREE \ && git clone --single-branch -b ${EMBREE_TAG} --depth 1 ${EMBREE_REPO} \