Skip to content

Commit

Permalink
Merge pull request #1093 from dwhswenson/fix-openmm-rc-build
Browse files Browse the repository at this point in the history
Fix build for OpenMM RCs
  • Loading branch information
dwhswenson committed Dec 15, 2021
2 parents 523442e + 80ce5e5 commit 2414321
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-openmm-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
auto-update-conda: true
- name: "Install requirements"
run: |
CONDA_PY=$(python -c "import sys; print('.'.join(str(s) for s in sys.version_info[:2]))")
# we'd rather use the default Python version, but for now need to
# pin to 3.9 (see openpathsampling/openpathsampling#1093)
#CONDA_PY=$(python -c "import sys; print('.'.join(str(s) for s in sys.version_info[:2]))")
export CONDA_PY=3.9
echo "Python version: ${CONDA_PY}"
source devtools/conda_install_reqs.sh
- name: "Install OpenMM RC"
Expand Down

0 comments on commit 2414321

Please sign in to comment.