File tree Expand file tree Collapse file tree 2 files changed +1
-40
lines changed Expand file tree Collapse file tree 2 files changed +1
-40
lines changed Original file line number Diff line number Diff line change @@ -228,34 +228,6 @@ jobs:
228
228
run : |
229
229
docker buildx imagetools inspect ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.version }}
230
230
231
- build_wheels :
232
- name : Build wheels on ${{ matrix.os }}
233
- runs-on : ${{ matrix.os }}
234
- strategy :
235
- matrix :
236
- os : [ubuntu-latest, ubuntu-24.04-arm, macos-14]
237
-
238
- steps :
239
- - uses : actions/checkout@v4
240
-
241
- # Used to host cibuildwheel
242
- - uses : actions/setup-python@v5
243
-
244
- - name : Install cibuildwheel
245
- run : python -m pip install cibuildwheel==3.0.0b1
246
-
247
- - name : Build wheels
248
- run : python -m cibuildwheel --output-dir wheelhouse
249
- env :
250
- CIBW_BUILD : " cp310-*"
251
- CIBW_REPAIR_WHEEL_COMMAND_MACOS : " "
252
- CIBW_BEFORE_BUILD_LINUX : " pushd /opt/_internal && tar -xvf static-libs-for-embedding-only.tar.xz && popd"
253
-
254
- - uses : actions/upload-artifact@v4
255
- with :
256
- name : cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
257
- path : ./wheelhouse/*.whl
258
-
259
231
build_sdist :
260
232
name : Build source distribution
261
233
runs-on : ubuntu-latest
@@ -271,7 +243,7 @@ jobs:
271
243
path : dist/*.tar.gz
272
244
273
245
upload_pypi :
274
- needs : [build_wheels, build_sdist]
246
+ needs : [build_sdist]
275
247
runs-on : ubuntu-latest
276
248
environment : pypi
277
249
permissions :
Original file line number Diff line number Diff line change @@ -160,11 +160,6 @@ int pyda_thread_detach(pthread_t thread) {
160
160
161
161
#ifdef LINUX
162
162
163
- // manylinux target is missing this define
164
- #ifndef AT_MINSIGSTKSZ
165
- #define AT_MINSIGSTKSZ 51
166
- #endif
167
-
168
163
extern size_t os_minsigstksz (void );
169
164
unsigned long pyda_getauxval (unsigned long type ) {
170
165
DEBUG_PRINTF ("getauxval %lx\n" , type );
@@ -224,12 +219,6 @@ void parse_proc_environ() {
224
219
int pyda_sysconf (int num ) {
225
220
DEBUG_PRINTF ("sysconf %d\n" , num );
226
221
#ifdef LINUX
227
-
228
- // manylinux target is missing this define
229
- #ifndef _SC_SIGSTKSZ
230
- #define _SC_SIGSTKSZ 250
231
- #endif
232
-
233
222
if (num == _SC_SIGSTKSZ ) {
234
223
DEBUG_PRINTF ("sigconf(_SC_SIGSTKSZ)\n" );
235
224
return os_minsigstksz ();
You can’t perform that action at this time.
0 commit comments