From f1f1f59e13add40e3f4f9dbd2726e231b247226c Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Thu, 17 Oct 2024 09:22:56 -0500 Subject: [PATCH 1/2] Drop plugins --- .github/workflows/full-stack.yaml | 5 ----- devtools/conda-envs/full-stack.yaml | 1 - 2 files changed, 6 deletions(-) diff --git a/.github/workflows/full-stack.yaml b/.github/workflows/full-stack.yaml index 5920675..a36894c 100644 --- a/.github/workflows/full-stack.yaml +++ b/.github/workflows/full-stack.yaml @@ -55,11 +55,6 @@ jobs: repository: openforcefield/openff-fragmenter path: openff-fragmenter - - name: Checkout SMIRNOFF plugins - uses: actions/checkout@v4 - with: - repository: openforcefield/smirnoff-plugins - path: smirnoff-plugins - name: Checkout OpenFF Units uses: actions/checkout@v4 with: diff --git a/devtools/conda-envs/full-stack.yaml b/devtools/conda-envs/full-stack.yaml index 479c1b4..f6c977d 100644 --- a/devtools/conda-envs/full-stack.yaml +++ b/devtools/conda-envs/full-stack.yaml @@ -20,7 +20,6 @@ dependencies: - msgpack-python - openeye-toolkits =2023.2 - intermol - - smirnoff-plugins # Recharge - qcelemental From 2bb16e98847cd6754a2876d0e4516bbfa24cf458 Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Thu, 17 Oct 2024 09:26:13 -0500 Subject: [PATCH 2/2] Actually drop them --- .github/workflows/full-stack.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/full-stack.yaml b/.github/workflows/full-stack.yaml index a36894c..7f826aa 100644 --- a/.github/workflows/full-stack.yaml +++ b/.github/workflows/full-stack.yaml @@ -91,15 +91,12 @@ jobs: openff-interchange/plugins/ \ openff-qcsubmit/ \ openff-units/ \ - openff-models/ \ - smirnoff-plugins/ + openff-models/ - name: Run 'everything all at once' tests run: | python -m pytest $PYTEST_ARGS \ - smirnoff-plugins/smirnoff_plugins/_tests/ \ openff-interchange/openff/interchange/_tests/ \ - --ignore=smirnoff-plugins/smirnoff_plugins/_tests/handlers/test_nonbonded.py \ --ignore=openff-interchange/openff/interchange/_tests/unit_tests/components/test_packmol.py \ --ignore=openff-interchange/openff/interchange/_tests/test_parameter_plugins.py::test_force_field_custom_handler \ --ignore=openff-interchange/openff/interchange/_tests/test_forcefield.py::TestForceFieldPluginLoading \