Skip to content

Commit 0621b5f

Browse files
authored
Merge pull request #175 from bashtage/python3.13
BLD: Build for Python 3.13
2 parents 7e39955 + db76f33 commit 0621b5f

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/build-wheels.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python: [cp39, cp310, cp311, cp312]
19+
python: [cp39, cp310, cp311, cp312, cp313]
2020
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
2121
python_impl: [Python]
2222
include:
@@ -36,6 +36,7 @@ jobs:
3636
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x} *pyodide*"
3737
CIBW_REPAIR_WHEEL_COMMAND_LINUX: 'auditwheel repair --strip -w {dest_dir} {wheel}'
3838
CIBW_BUILD_VERBOSITY: 1
39+
CIBW_PRERELEASE_PYTHONS: True
3940
MULTIBUILD_WHEELS_STAGING_ACCESS: ${{ secrets.MULTIBUILD_WHEELS_STAGING_ACCESS }}
4041
SCIENTIFIC_PYTHON_NIGHTLY_WHEELS: ${{ secrets.SCIENTIFIC_PYTHON_NIGHTLY_WHEELS }}
4142
MKL_NUM_THREADS: 1
@@ -55,7 +56,7 @@ jobs:
5556
platforms: all
5657

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

6768
- name: Build wheels (MacOS x86_64)
6869
if: matrix.os == 'macos-13'
69-
uses: pypa/cibuildwheel@v2.20
70+
uses: pypa/cibuildwheel@v2.21
7071
with:
7172
output-dir: wheelhouse
7273
package-dir: statsmodels
@@ -76,7 +77,7 @@ jobs:
7677

7778
- name: Build Pyodide wheel
7879
if: matrix.python_impl == 'Pyodide'
79-
uses: pypa/cibuildwheel@v2.20
80+
uses: pypa/cibuildwheel@v2.21
8081
with:
8182
output-dir: wheelhouse
8283
package-dir: statsmodels

0 commit comments

Comments
 (0)