@@ -23,16 +23,17 @@ jobs:
23
23
run : |
24
24
bash -x .install-pari.sh
25
25
env :
26
- PARI_VERSION : pari-2.15.4
26
+ PARI_VERSION : pari-2.17.1
27
+ URLDIR : unix
27
28
- uses : actions/setup-python@v4
28
29
- name : make sdist
29
30
run : |
30
31
python3 -m pip install build
31
32
python3 -m build --sdist
32
- - uses : actions/upload-artifact@v3
33
+ - uses : actions/upload-artifact@v4
33
34
with :
34
35
path : " dist/*.tar.gz"
35
- name : dist
36
+ name : dist-ubuntu-latest
36
37
- uses : pypa/gh-action-pypi-publish@release/v1
37
38
with :
38
39
user : __token__
68
69
#
69
70
CIBW_ARCHS : ${{ matrix.arch }}
70
71
# https://cibuildwheel.readthedocs.io/en/stable/options/#requires-python
71
- CIBW_PROJECT_REQUIRES_PYTHON : " >=3.9 "
72
+ CIBW_PROJECT_REQUIRES_PYTHON : " >=3.10 "
72
73
# Environment during wheel build
73
74
CIBW_ENVIRONMENT : " PATH=$(pwd)/local/bin:$PATH CPATH=$(pwd)/local/include:$CPATH LIBRARY_PATH=$(pwd)/local/lib:$LIBRARY_PATH LD_LIBRARY_PATH=$(pwd)/local/lib:$LD_LIBRARY_PATH PKG_CONFIG_PATH=$(pwd)/local/share/pkgconfig:$PKG_CONFIG_PATH ACLOCAL_PATH=/usr/share/aclocal"
74
75
# Use 'build', not 'pip wheel'
@@ -79,17 +80,17 @@ jobs:
79
80
repository : sagemath/sage
80
81
ref : develop
81
82
82
- - uses : actions/download-artifact@v4.1.7
83
+ - uses : actions/download-artifact@v4
83
84
with :
84
- name : dist
85
+ pattern : dist-*
85
86
path : dist
86
87
87
88
- uses : actions/setup-python@v5
88
89
# As of 2024-02-03, the macOS M1 runners do not have preinstalled python or pipx.
89
90
# Installing pipx follows the approach of https://github.com/pypa/cibuildwheel/pull/1743
90
91
id : python
91
92
with :
92
- python-version : " 3.8 - 3.12"
93
+ python-version : " 3.10 - 3.12"
93
94
update-environment : false
94
95
95
96
- name : Build platform wheels
@@ -105,13 +106,13 @@ jobs:
105
106
export 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)) || echo error ignored) ) && ./bootstrap && ./configure --enable-build-as-root && make -j4 V=0 $TARGETS_PRE"
106
107
mkdir -p unpacked
107
108
for pkg in cypari2; do
108
- (cd unpacked && tar xfz - ) < dist/$pkg*.tar.gz
109
+ (cd unpacked && tar xfz - ) < dist/dist-ubuntu-latest/ $pkg*.tar.gz
109
110
"${{ steps.python.outputs.python-path }}" -m pipx run cibuildwheel==2.17.0 unpacked/$pkg*
110
111
done
111
112
112
- - uses : actions/upload-artifact@v3
113
+ - uses : actions/upload-artifact@v4
113
114
with :
114
- name : wheels
115
+ name : wheels-${{ matrix.os }}
115
116
path : ./wheelhouse/*.whl
116
117
117
118
pypi-publish :
@@ -124,7 +125,7 @@ jobs:
124
125
CAN_DEPLOY : ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' }}
125
126
steps :
126
127
127
- - uses : actions/download-artifact@v4.1.7
128
+ - uses : actions/download-artifact@v4
128
129
with :
129
130
name : wheels
130
131
path : wheelhouse
0 commit comments