Skip to content

Commit b0be562

Browse files
authored
Merge pull request #184 from CCPBioSim/181-use-latest-for-mdanalysis
Remove conditional MDAnalysis install logic
2 parents e141b7d + d96bc62 commit b0be562

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/mdanalysis-compatibility.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,7 @@ jobs:
2929
run: |
3030
pip install --upgrade pip
3131
pip install -e .[testing]
32-
33-
if [ "${{ matrix.mdanalysis-version }}" = "latest" ]; then
34-
pip install MDAnalysis
35-
else
36-
pip install "MDAnalysis==${{ matrix.mdanalysis-version }}"
37-
fi
32+
pip install "MDAnalysis==${{ matrix.mdanalysis-version }}"
3833
3934
- name: Run compatibility tests
4035
run: pytest --cov CodeEntropy --cov-report=term-missing --cov-append

0 commit comments

Comments
 (0)