Skip to content

Commit

Permalink
pin setuptools version to 73.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vpung committed Aug 28, 2024
1 parent ea254b0 commit 9092d1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ mypy:

# Install and unit test
libpecos:
python3 -m pip install --upgrade pip
python3 -m pip install pip==23.0.1
${WARN_AS_ERROR_CMD} python3 -m pip install ${VFLAG} --editable .

.PHONY: test
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[aliases]
test=pytest

[build-system]
requires = ["setuptools<=73.0.1"]

# Configuration for pytest; enable coverage for pecos, emit
# XML, HTML, and terminal reports.
[tool:pytest]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ def get_blas_lib_dir(cls):

# Requirements
numpy_requires = [
'setuptools<=73.0.1',
'numpy>=1.19.5,<2.0.0; python_version>="3.8"'
]
setup_requires = numpy_requires + [
Expand Down

0 comments on commit 9092d1d

Please sign in to comment.