Skip to content
Merged
Show file tree
Hide file tree
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 @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [cp39, cp310, cp311, cp312]
python: [cp39, cp310, cp311, cp312, cp313]
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
python_impl: [Python]
include:
Expand All @@ -36,6 +36,7 @@ jobs:
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x} *pyodide*"
CIBW_REPAIR_WHEEL_COMMAND_LINUX: 'auditwheel repair --strip -w {dest_dir} {wheel}'
CIBW_BUILD_VERBOSITY: 1
CIBW_PRERELEASE_PYTHONS: True
MULTIBUILD_WHEELS_STAGING_ACCESS: ${{ secrets.MULTIBUILD_WHEELS_STAGING_ACCESS }}
SCIENTIFIC_PYTHON_NIGHTLY_WHEELS: ${{ secrets.SCIENTIFIC_PYTHON_NIGHTLY_WHEELS }}
MKL_NUM_THREADS: 1
Expand All @@ -55,7 +56,7 @@ jobs:
platforms: all

- name: Build wheels (Default)
uses: pypa/cibuildwheel@v2.20
uses: pypa/cibuildwheel@v2.21
if: (matrix.python_impl != 'Pyodide') && (matrix.os != 'macos-13')
with:
output-dir: wheelhouse
Expand All @@ -66,7 +67,7 @@ jobs:

- name: Build wheels (MacOS x86_64)
if: matrix.os == 'macos-13'
uses: pypa/cibuildwheel@v2.20
uses: pypa/cibuildwheel@v2.21
with:
output-dir: wheelhouse
package-dir: statsmodels
Expand All @@ -76,7 +77,7 @@ jobs:

- name: Build Pyodide wheel
if: matrix.python_impl == 'Pyodide'
uses: pypa/cibuildwheel@v2.20
uses: pypa/cibuildwheel@v2.21
with:
output-dir: wheelhouse
package-dir: statsmodels
Expand Down