Skip to content
Draft
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .github/workflows/base-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ jobs:
fail-fast: false
matrix:
os: [macOS-13, macOS-latest, ubuntu-latest]
python-version: ["3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
include-openeye: [false, true]
exclude:
- include-openeye: true
python-version: "3.13" # OpenEye not supported on Python 3.13 yet

steps:
- uses: actions/checkout@v5
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,22 @@ jobs:
fail-fast: false
matrix:
os: [macOS-13, macOS-latest, ubuntu-latest]
python-version: ["3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
pydantic-version: ["1", "2"]
include-rdkit: [false, true]
include-openeye: [false, true]
include-dgl: [false, true]
exclude:
- include-rdkit: false
include-openeye: false
- include-openeye: true
python-version: "3.13" # OpenEye not supported on Python 3.13 yet
- include-dgl: true
python-version: "3.13" # DGL not supported on Python 3.13 yet
- include-dgl: false
include-openeye: false
os: macOS-13 # AmberTools not on macOS-13 for Python 3.13
python-version: "3.13"


steps:
Expand Down
2 changes: 1 addition & 1 deletion devtools/conda-envs/test_env_dgl_true.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies:
- pyarrow

# gcn
- dgl =2.1
- dgl =2.3
- pytorch >=2.0
- pytorch-lightning

Expand Down