Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel, windows-11-arm]
python: [cp310, cp311, cp312, cp313, cp314]
python: [cp310, cp311, cp312, cp313, cp314, cp314t]
python_impl: [Python]
include:
- python: cp312
- python: cp313
os: ubuntu-latest
python_impl: Pyodide
exclude:
Expand All @@ -39,7 +39,7 @@ jobs:
CIBW_ARCHS_MACOS: native
# No support for pypy, musl, Win32 for 3.10+
# Skip musl for 3.8 and 3.9 since no upstream wheels
CIBW_SKIP: "pp* *-win32 *musllinux_aarch64*"
CIBW_SKIP: "*-win32 *musllinux_aarch64*"
CIBW_TEST_REQUIRES: pytest pytest-xdist pytest-randomly threadpoolctl pytest-run-parallel
CIBW_TEST_COMMAND: python -c "import numpy; numpy.show_runtime(); import statsmodels; statsmodels.test(['-m','(not slow and not example)','-n','2'], exit=True)"
# Avoid testing on emulated architectures and Pyodide
Expand Down Expand Up @@ -82,8 +82,9 @@ jobs:
output-dir: wheelhouse
package-dir: statsmodels
env:
CIBW_BEFORE_BUILD: 'git submodule foreach git checkout ${{ env.BUILD_COMMIT }}'
CIBW_PLATFORM: pyodide
CIBW_BUILD: "cp313-*"
CIBW_BEFORE_BUILD: 'git submodule foreach git checkout ${{ env.BUILD_COMMIT }}'

- name: Setup Upload Variables
if: ${{ always() }}
Expand Down
Loading