Skip to content

Commit

Permalink
Fix dev CI (#120)
Browse files Browse the repository at this point in the history
* indent

* install importlib resources

* pin pytorch < 2.2

* pin pytorch >=2.3

* pin cuda??

* pin pytorch again

* specify pin further

* avoid post?

* remove pytorch-nightly channel

* add back pytorch-nightly

* fail to deal with incompatibility for now
  • Loading branch information
lilyminium authored Jul 16, 2024
1 parent 84302e5 commit 3d251ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/dev-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
matrix:
os: [macOS-12, ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
exclude:
# mdtraj currently doesn't support MacOS py3.12
- os: "macOS-latest"
python-version: "3.12"
exclude:
# mdtraj currently doesn't support MacOS py3.12
- os: "macOS-latest"
python-version: "3.12"


steps:
Expand Down Expand Up @@ -63,6 +63,10 @@ jobs:
conda info
conda list
- name: Import DGL
run: |
python -c "import dgl"
- name: Run tests
run: |
python -m pytest -n 4 -v --cov=openff/nagl --cov-config=setup.cfg --cov-append --cov-report=xml --color=yes openff/nagl/
Expand Down
1 change: 1 addition & 0 deletions devtools/conda-envs/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies:
# other openff dependencies
- cachetools
- cached-property
- importlib_resources
- mdtraj
- openff-amber-ff-ports
- openmm
Expand Down

0 comments on commit 3d251ed

Please sign in to comment.