Skip to content

Commit

Permalink
build: specify setuptools version
Browse files Browse the repository at this point in the history
  • Loading branch information
eginhard committed May 8, 2024
1 parent 96c849a commit c24fbc8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ FROM ${BASE}

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y --no-install-recommends gcc g++ make python3 python3-dev python3-pip python3-venv python3-wheel espeak-ng libsndfile1-dev && rm -rf /var/lib/apt/lists/*
RUN apt-get purge python3-setuptools
RUN pip3 list
# RUN pip3 install -U setuptools
RUN pip3 install llvmlite --ignore-installed

# Install Dependencies:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"setuptools",
"cython~=0.29.30",
"setuptools>=61.0",
"Cython~=0.29.30",
"numpy>=1.24.3",
]
build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit c24fbc8

Please sign in to comment.