From cb58b6009ad3d0be81acd9872d6d5e32055ebf44 Mon Sep 17 00:00:00 2001 From: Janosh Riebesell Date: Sat, 9 Mar 2024 07:51:49 +0100 Subject: [PATCH] this probably doesn't work --- .github/workflows/test.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d3459831..23cbe748 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,16 +37,12 @@ jobs: - name: Install uv run: pip install uv - - uses: conda-incubator/setup-miniconda@v3 - with: - python-version: ${{ matrix.python-version }} - activate-environment: qchem - - - name: Install OpenBabel - run: conda install -c conda-forge openbabel - - name: Install dependencies - run: uv pip install -e '.[dev]' --system + run: | + uv pip install -e '.[dev]' --system + uv pip install openbabel --system + # check if openbabel is installed + python -c "import openbabel" - name: pytest env: