File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ jobs:
260
260
# Installing pipx follows the approach of https://github.com/pypa/cibuildwheel/pull/1743
261
261
id : python
262
262
with :
263
- python-version : " 3.8 - 3.12 "
263
+ python-version : " 3.11 - 3.13 "
264
264
update-environment : false
265
265
266
266
- name : Bootstrap
@@ -283,7 +283,7 @@ jobs:
283
283
#
284
284
# omit sagemath-{meataxe,sirocco} for now -- needs sagemath-modules
285
285
run : |
286
- "${{ steps.python.outputs.python-path }}" -m pip install cibuildwheel==2.18.0
286
+ "${{ steps.python.outputs.python-path }}" -m pip install cibuildwheel==3.0.1
287
287
export PATH=build/bin:$PATH
288
288
echo CIBW_BEFORE_ALL="( $(sage-print-system-package-command debian --yes --no-install-recommends install $(sage-get-system-packages debian $SPKGS)) || $(sage-print-system-package-command fedora --yes --no-install-recommends install $(sage-get-system-packages fedora $SPKGS | sed s/pkg-config/pkgconfig/)) || ( $(sage-print-system-package-command homebrew --yes --no-install-recommends install $(sage-get-system-packages homebrew $SPKGS)) || $(sage-print-system-package-command alpine --yes --no-install-recommends install $(sage-get-system-packages alpine $SPKGS)) || echo error ignored) ) && if cp /host/sage-\$AUDITWHEEL_PLAT/config.status . 2>/dev/null; then chmod +x config.status; fi && if [ -x ./config.status ]; then ./config.status; else ./configure --enable-build-as-root ${{ startsWith(matrix.os, 'ubuntu') && '--prefix=/host/sage-\$AUDITWHEEL_PLAT' || '' }} && cp config.status prefix/; fi && MAKE=\"make -j6\" make V=0 $TARGETS_PRE && (echo \"sage_conf @ file://\$(pwd)/pkgs/sage-conf\" && echo \"sage_setup @ file://\$(pwd)/pkgs/sage-setup\") > constraints.txt" >> "$GITHUB_ENV"
289
289
mkdir -p unpacked
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ RUN ln -s /usr/bin/sage /usr/bin/sagemath
90
90
# We need gcc/g++ and libstdc++-10-dev to allow compilation of cython at run-time from the notebook.
91
91
# We also install sudo for the sage user, see below.
92
92
RUN apt-get -qq update \
93
- && apt-get -qq install -y --no-install-recommends gfortran gcc g++ libstdc++-10-dev sudo openssl \
93
+ && apt-get -qq install -y --no-install-recommends gfortran gcc g++ libstdc++-10-dev sudo openssl bzip2 libbz2-dev pkg-config \
94
94
&& apt-get -qq clean \
95
95
&& rm -r /var/lib/apt/lists/*
96
96
# Sage refuses to build as root, so we add a "sage" user that can sudo without a password.
You can’t perform that action at this time.
0 commit comments