-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A small fix was required to enable installation of mdtraj on python 3.11
- Loading branch information
1 parent
b2f3d57
commit 876968b
Showing
3 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
FROM fedora:36 | ||
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 mdtraj \ | ||
&& pip3 install MDAnalysis | ||
&& pip3 install cython numpy pandas \ | ||
&& pip3 install MDAnalysis \ | ||
&& pip3 install git+https://github.com/mdtraj/[email protected] | ||
|
||
RUN useradd -ms /bin/bash plumed | ||
USER plumed | ||
|
876968b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found broken examples in automatic/a-masterclass-22-09.txt
Found broken examples in automatic/a-masterclass-22-11.txt
Found broken examples in automatic/a-masterclass-22-12.txt
Found broken examples in automatic/performance-optimization.txt
Found broken examples in automatic/a-trieste-6.txt
Found broken examples in automatic/munster.txt
Found broken examples in automatic/ANN.tmp
Found broken examples in automatic/EDS.tmp
Found broken examples in automatic/EMMI.tmp
Found broken examples in automatic/ENVIRONMENTSIMILARITY.tmp
Found broken examples in automatic/FOURIER_TRANSFORM.tmp
Found broken examples in automatic/FUNCPATHGENERAL.tmp
Found broken examples in automatic/FUNCPATHMSD.tmp
Found broken examples in automatic/FUNNEL.tmp
Found broken examples in automatic/FUNNEL_PS.tmp
Found broken examples in automatic/GHBFIX.tmp
Found broken examples in automatic/INCLUDE.tmp
Found broken examples in automatic/MAZE_MEMETIC_SAMPLING.tmp
Found broken examples in automatic/MAZE_OPTIMIZER_BIAS.tmp
Found broken examples in automatic/MAZE_RANDOM_ACCELERATION_MD.tmp
Found broken examples in automatic/MAZE_RANDOM_WALK.tmp
Found broken examples in automatic/MAZE_SIMULATED_ANNEALING.tmp
Found broken examples in automatic/MAZE_STEERED_MD.tmp
Found broken examples in automatic/PIV.tmp
Found broken examples in automatic/PLUMED.tmp
Found broken examples in MiscelaneousPP.md