Skip to content

Commit

Permalink
Check if dgl 2.3.0 works (#220)
Browse files Browse the repository at this point in the history
* Check if dgl 2.3.0 works

* drop python 3.9 from CI and add 3.12

* update versioneer
  • Loading branch information
mikemhenry authored Oct 8, 2024
1 parent cb8e5b2 commit dd0bf1a
Show file tree
Hide file tree
Showing 6 changed files with 1,090 additions and 519 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.ipynb linguist-documentation
*.html linguist-documentation
espaloma/_version.py export-subst
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:

defaults:
run:
shell: bash -l {0}
shell: bash -leo pipefail {0}

jobs:
test:
Expand All @@ -31,9 +31,9 @@ jobs:
matrix:
os: ['ubuntu','macos']
python-version:
- "3.12"
- "3.11"
- "3.10"
- "3.9"

env:
OPENMM: ${{ matrix.cfg.openmm }}
Expand Down
2 changes: 1 addition & 1 deletion devtools/conda-envs/espaloma.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies:
- openmmforcefields >=0.11.2
- tqdm
- pydantic <2 # We need our deps to fix this
- dgl =1.1.2
- dgl =2.3.0
- qcportal =0.15.8
# Testing
- pytest
Expand Down
3 changes: 3 additions & 0 deletions espaloma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@
__version__ = versions["version"]
__git_revision__ = versions["full-revisionid"]
del get_versions, versions

from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit dd0bf1a

Please sign in to comment.