From da2dba23d60e2377633f0f0c44b1e3cffafad788 Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Thu, 3 Oct 2024 09:45:02 -0500 Subject: [PATCH] Don't trust RDKit stubs --- .github/workflows/CI.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 13d2f39e4..130d988f1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -140,7 +140,10 @@ jobs: - name: Run mypy # subtle differences in Python/mypy versions, just keep it passing on one - if: ${{ matrix.rdkit == true && matrix.openeye && matrix.python-version == 3.10 }} + # prefer having htis back to rdkit == true, but builds often have bugs in stubs and + # there are other bugs/subtleties (in the source code and builds) that reduce the number + # of available builds + if: ${{ matrix.rdkit == false && matrix.openeye && matrix.python-version == 3.10 }} run: mypy -p "openff.toolkit" - name: Run unit tests