Skip to content

Bump build dependencies #3100

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

Merged
merged 1 commit into from
Sep 16, 2024
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: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Install uv for speed
uses: yezz123/setup-uv@v4
with:
uv-version: "0.2.22"
uv-version: "0.4.10"

- name: Build and test wheels
uses: pypa/cibuildwheel@v2.20.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Install uv for speed
uses: yezz123/setup-uv@v4
with:
uv-version: "0.2.22"
uv-version: "0.4.10"

- name: Build and test wheels
uses: pypa/cibuildwheel@v2.20.0
Expand Down
8 changes: 3 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ pygame_ce = 'pygame.__briefcase.pygame_ce:PygameCEGuiBootstrap'
[build-system]
requires = [
"meson-python<=0.16.0",
"meson<=1.5.0",
"meson<=1.5.1",
"ninja<=1.11.1.1",
"cython<=3.0.10",
"cython<=3.0.11",
"sphinx<=7.2.6",
]
build-backend = 'mesonpy'
Expand Down Expand Up @@ -109,8 +109,6 @@ only-binary = ["numpy"]

# 1. skip all 32-bit manylinux (i686)
# 2. skip all pypy+arm combinations
# 3. skip all pypy 310 because it is so new numpy does not have wheels for it
# 4. skip all python 313 because numpy doesn't have wheels for it yet
[[tool.cibuildwheel.overrides]]
select = "{*-manylinux_i686,pp*-*{arm64,aarch64},pp310-*,*p313-*}"
select = "{*-manylinux_i686,pp*-*{arm64,aarch64}}"
test-requires = []
Loading