From 39c538c2bd0366a7cb63e51d39d54808ba66da86 Mon Sep 17 00:00:00 2001 From: chris-simpson Date: Fri, 22 May 2026 17:00:39 -1000 Subject: [PATCH 1/2] add pip to the tox.ini for github workflows --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 4184b460c..9ec169c60 100644 --- a/tox.ini +++ b/tox.ini @@ -39,6 +39,7 @@ conda_deps = numpy>=1.24 objgraph>=3.5 pandas>=2.0 + pip psutil>=5.6 # only used by adcc? pyerfa>=1.7 pytest>=5.2 From 68df07f04788482ebc4a30bb92b7820b6e3ba934 Mon Sep 17 00:00:00 2001 From: chris-simpson Date: Fri, 22 May 2026 16:50:51 -1000 Subject: [PATCH 2/2] tweak to github workflows to try to ensure pip is installed --- .github/workflows/unit-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 9fb56dcf3..c597ca13d 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -43,7 +43,9 @@ jobs: - name: Install packages shell: bash -l {0} - run: python -m pip install tox tox-conda + run: | + python -m ensurepip + python -m pip install tox tox-conda - name: Setup DRAGONS_TEST shell: bash -l {0}