Skip to content

Commit

Permalink
Fix build error introduced by new setuptools version
Browse files Browse the repository at this point in the history
Fixes "TypeError: canonicalize_version() got an unexpected keyword
argument 'strip_trailing_zero'"

See e.g.:
    pypa/setuptools#4483
    pypa/setuptools#4501
  • Loading branch information
coldfix committed Dec 17, 2024
1 parent 2bd6bcd commit d3933cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/build/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN groupadd -o -g $GID runner && \
fi && \
pip install --upgrade cmake 'cython>=3.1.0a1' --only-binary=cmake && \
for PYBIN in /opt/python/cp3*/bin; do \
"${PYBIN}/pip" install -U setuptools; \
"${PYBIN}/pip" install -U "setuptools[core]"; \
done

VOLUME /mnt
Expand Down

0 comments on commit d3933cb

Please sign in to comment.