Skip to content

Commit

Permalink
pin setuptools to < 60.0 (#113)
Browse files Browse the repository at this point in the history
* pin setuptools to < 60.0

* typo

* try again

* change conda setuptools

* fix py 3.8

* remove old MANIFEST file
  • Loading branch information
bodono authored Sep 26, 2024
1 parent 9262249 commit 808db24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 19 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
channels: conda-forge,anaconda
- name: Install dependencies
run: |
conda install scipy numpy pytest
conda install scipy numpy pytest 'setuptools<=60'
- name: Test
run: |
python legacy_setup.py install --scs --openmp
Expand Down Expand Up @@ -91,7 +91,9 @@ jobs:
else
BLAS_PKGS="blas-devel=*=*openblas"
fi
if [[ "$PYTHON_VERSION" == "3.8" ]] || [[ "$PYTHON_VERSION" == "3.9" ]]; then
if [[ "$PYTHON_VERSION" == "3.8" ]]; then
conda install scipy=1.5 numpy=1.19 pytest $BLAS_PKGS pkg-config 'setuptools<=60'
elif [[ "$PYTHON_VERSION" == "3.9" ]]; then
conda install scipy=1.5 numpy=1.19 pytest $BLAS_PKGS pkg-config
elif [[ "$PYTHON_VERSION" == "3.10" ]]; then
conda install scipy=1.7 numpy=1.21 pytest $BLAS_PKGS pkg-config
Expand Down
17 changes: 0 additions & 17 deletions MANIFEST.in

This file was deleted.

0 comments on commit 808db24

Please sign in to comment.