Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.12 wheels #2325

Merged
merged 2 commits into from
Jul 20, 2023
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
2 changes: 2 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ jobs:

CIBW_BUILD: ${{ matrix.pyversions }}

CIBW_PRERELEASE_PYTHONS: True # for 3.12 testing

# Build arm64 and x86_64 wheels too on an Intel runner.
# Note that the arm64 wheels cannot be tested on CI in this configuration
CIBW_ARCHS: ${{ matrix.macarch }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:
# also define environment variables needed for testing
CIBW_ENVIRONMENT: PIP_CONFIG_FILE=buildconfig/pip_config.ini PORTMIDI_INC_PORTTIME=1 SDL_VIDEODRIVER=dummy SDL_AUDIODRIVER=disk

CIBW_BUILD: "cp3{[7-9],10,11}-* pp3[7-9]-*"
CIBW_PRERELEASE_PYTHONS: True # for 3.12 testing

CIBW_BUILD: "cp3{[7-9],10,11,12}-* pp3[7-9]-*"
CIBW_ARCHS: ${{ matrix.arch }}

# skip musllinux for now
Expand Down
16 changes: 15 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
fail-fast: false # if a particular matrix build fails, don't skip the rest
matrix:
include:
- {
name: "CPython 3.12 (64 bit)",
winarch: AMD64,
msvc-dev-arch: x86_amd64,
pyversions: "cp312-*"
}
- {
name: "CPython 3.11 (64 bit)",
winarch: AMD64,
Expand Down Expand Up @@ -73,6 +79,12 @@ jobs:
msvc-dev-arch: x86_amd64,
pyversions: "cp37-*"
}
- {
name: "CPython 3.12 (32 bit)",
winarch: x86,
msvc-dev-arch: x86,
pyversions: "cp312-win32*"
}
- {
name: "CPython 3.11 (32 bit)",
winarch: x86,
Expand Down Expand Up @@ -129,6 +141,8 @@ jobs:
# also define environment variables needed for testing
CIBW_ENVIRONMENT: PIP_CONFIG_FILE=buildconfig/pip_config.ini SDL_VIDEODRIVER=dummy SDL_AUDIODRIVER=disk

CIBW_PRERELEASE_PYTHONS: True # for 3.12 testing

CIBW_BUILD: ${{ matrix.pyversions }}
CIBW_ARCHS: ${{ matrix.winarch }}

Expand Down Expand Up @@ -158,7 +172,7 @@ jobs:
set MSSdk=1
python -m pip install setuptools wheel requests numpy Sphinx
python setup.py docs
python -m pip --disable-pip-version-check install cibuildwheel==2.12.0
python -m pip --disable-pip-version-check install cibuildwheel==2.14.1
python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Games/Entertainment",
Expand Down