Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: 3.12
- uses: s-weigand/setup-conda@v1
with:
python-version: 3.9
python-version: 3.12
activate-conda: true
- run: conda --version
- run: which python
- run: pwd
- run: ls -la
- name: Install dependencies
run: |
sudo apt-get install build-essential
conda install -c conda-forge openmm
sudo apt-get install build-essential
conda install pip
pip install openmm
pip install cython
pip install -r requirements.txt
pip install -e .
Expand Down