From bfdde73884c96e0df69b285ca24d03a79191d8dc Mon Sep 17 00:00:00 2001 From: "Travis A. O'Brien" Date: Tue, 10 Sep 2024 11:23:08 -0400 Subject: [PATCH] Make sure setuptools is installed for >=3.12 compatibbility --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1eabb9f..958c025 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,8 @@ jobs: - name: Test against oldest supported numpy version run: | + python -m pip install --upgrade pip + python -m pip install --upgrade setuptools python -m pip install numpy==1.23.5 # now run test suite pip install -r requirements.txt