Skip to content

Commit

Permalink
explicitly install numkit and cpython with GROMACS
Browse files Browse the repository at this point in the history
  • Loading branch information
orbeckst committed Sep 15, 2023
1 parent 52424b1 commit 6f824c9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
cache-downloads: true
cache-environment: true
create-args: >-
python=${{ matrix.python-version }}
python=${{ matrix.python-version }}.*=*_cpython
- name: Python version information ${{ matrix.python-version }}
run: |
Expand All @@ -97,8 +97,12 @@ jobs:
micromamba install pytest pytest-pep8 pytest-cov codecov
- name: Install GROMACS (${{ matrix.gromacs-version }})
# UGLY HACK/FIX (probably to issues with bioconda packages)
# - For 3.9, micromamba insists on using pypy 3.9 (and --py-pin does not help).
# - For 2.7 macOS, numkit would get uninstalled.
# We can't freeze because then it's not possible to install older GROMACS versions from bioconda.
run: |
micromamba install --py-pin 'gromacs==${{ matrix.gromacs-version }}' pocl
micromamba install 'gromacs==${{ matrix.gromacs-version }}' pocl numkit python=${{ matrix.python-version }}.*=*_cpython
- name: Install package (with no dependencies)
run: |
Expand Down

0 comments on commit 6f824c9

Please sign in to comment.