File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 5353 - name : checkout vcell-solvers repo
5454 uses : actions/checkout@v4
5555
56+ - uses : actions/setup-python@v5
57+ with :
58+ python-version : ' 3.10'
59+
5660 - name : Install Intel MacOS dependencies
5761 if : matrix.platform == 'macos-13'
5862 shell : bash
6973 gcc --version
7074 gfortran --version
7175 cmake --version
76+ python --version
7277 brew info boost
7378 brew info hdf5
7479
Original file line number Diff line number Diff line change 1- FROM python:3.9.7 -slim AS build
1+ FROM python:3.10.15 -slim AS build
22
33RUN apt-get -y update && apt-get install -y apt-utils && \
44 apt-get install -y -qq -o=Dpkg::Use-Pty=0 build-essential gfortran zlib1g-dev \
@@ -38,12 +38,12 @@ RUN $JAVA_HOME/bin/jlink \
3838 --output /javaruntime
3939
4040# Define base image and copy in jlink created minimal Java 17 environment
41- FROM python:3.9.7 -slim
41+ FROM python:3.10.15 -slim
4242ENV JAVA_HOME=/opt/java/openjdk
4343ENV PATH="${JAVA_HOME}/bin:${PATH}"
4444COPY --from=jre-build /javaruntime $JAVA_HOME
4545
46- # now we have Java 17 and Python 3.9
46+ # now we have Java 17 and Python 3.10.15 installed
4747ENV DEBIAN_FRONTEND=noninteractive
4848ENV LANG=en_US.UTF-8
4949
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ if (APPLE)
4040 if (PROCESSOR_ARCHITECTURE STREQUAL "arm64" )
4141 link_directories ("/opt/homebrew/lib" )
4242 else ()
43- link_directories ("/usr/local/Cellar/hdf5/1.14.3_1/ lib" )
43+ link_directories ("/usr/local/lib" )
4444 endif ()
4545endif ()
4646
You can’t perform that action at this time.
0 commit comments