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
6 changes: 3 additions & 3 deletions .github/workflows/base-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

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

env:
OE_LICENSE: ${{ github.workspace }}/oe_license.txt
Expand All @@ -31,8 +31,8 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
python-version: ["3.12"]
include-openeye: [false, true]
python-version: ["3.14"]
include-openeye: [false]

steps:
- uses: actions/checkout@v6
Expand Down
110 changes: 0 additions & 110 deletions .github/workflows/dev-ci.yaml

This file was deleted.

91 changes: 0 additions & 91 deletions .github/workflows/examples-ci.yaml

This file was deleted.

19 changes: 9 additions & 10 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

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

env:
OE_LICENSE: ${{ github.workspace }}/oe_license.txt
Expand All @@ -31,15 +31,11 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
python-version: ["3.12"]
pydantic-version: ["1", "2"]
include-rdkit: [false, true]
include-openeye: [false, true]
include-dgl: [false, true]
exclude:
- include-rdkit: false
include-openeye: false

python-version: ["3.14"]
pydantic-version: ["2"]
include-rdkit: [true]
include-openeye: [false]
include-dgl: [false]

steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -83,6 +79,9 @@ jobs:
mkdir -p ~/.dgl
echo '{"backend": "pytorch"}' > ~/.dgl/config.json

- name: Target Pydantic error?
run: python -c "from openff.nagl.training.loss import TargetType"

- name: Check toolkit installations
shell: bash -l -c "python -u {0}"
run: |
Expand Down
102 changes: 0 additions & 102 deletions .github/workflows/gpu.yaml

This file was deleted.

1 change: 0 additions & 1 deletion devtools/conda-envs/test_env_dgl_false.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ dependencies:
- pydantic <3
- rdkit !=2024.03.6
- scipy
- ambertools

# # database
# - pyarrow
Expand Down
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.

# In case the project was not installed
from __future__ import annotations

import os
import sys

sys.path.insert(0, os.path.abspath(".."))
import openff.nagl


# -- Project information -----------------------------------------------------

project = "OpenFF NAGL"
Expand Down
Loading
Loading