Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated python version requested from the ci (v2.9) #968

Closed
wants to merge 14 commits into from
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- name: Set paths
run: |
echo "$HOME/opt/bin" >> $GITHUB_PATH
Expand Down
2 changes: 1 addition & 1 deletion docker/centos7
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN yum -y update \
python3 python3-devel python3-pip \
&& pip3 install pillow==8.3.2 \
&& pip3 install numpy==1.19 \
&& pip3 install cython numpy pandas mdtraj \
&& pip3 install "cython<3" numpy pandas mdtraj \
&& pip3 install "gsd<3" \
&& pip3 install MDAnalysis==1.0.0

Expand Down
21 changes: 11 additions & 10 deletions docker/fedora37
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@ FROM fedora:37
# note: at variance with centos7, here we have to explicitly install gcc
# mdtraj 1.9.7 does not compile with python 3.11 unless installed from source
# see https://github.com/mdtraj/mdtraj/issues/1761
RUN yum -y update \
&& yum -y group install "Development Tools" \
&& yum -y install gcc-c++ \
&& yum -y install environment-modules gawk vim wget \
lapack-devel blas-devel zlib-devel gsl-devel fftw-devel openmpi-devel boost-devel \
python3 python3-devel python3-pip \
&& pip3 install numpy \
&& pip3 install cython numpy pandas \
&& pip3 install MDAnalysis \
&& pip3 install git+https://github.com/mdtraj/[email protected]
RUN yum -y update
RUN yum -y group install "Development Tools"
RUN yum -y install gcc-c++
RUN yum -y install environment-modules gawk vim wget lapack-devel blas-devel \
zlib-devel gsl-devel fftw-devel openmpi-devel boost-devel \
python3 python3-devel python3-pip
RUN pip3 install numpy
RUN pip3 install cython
RUN pip3 install pandas
RUN pip3 install MDAnalysis
RUN pip3 install mdtraj

RUN useradd -ms /bin/bash plumed
USER plumed
Expand Down
2 changes: 1 addition & 1 deletion docker/rocky8
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yum -y update \
python3 python3-devel python3-pip \
&& pip3 install pillow==8.3.2 \
&& pip3 install numpy==1.19 \
&& pip3 install cython numpy pandas mdtraj \
&& pip3 install "cython<3" numpy pandas mdtraj \
&& pip3 install MDAnalysis==1.0.0

RUN useradd -ms /bin/bash plumed
Expand Down