Skip to content

Commit bd2ffbf

Browse files
committed
Bump build deps, minor dev.py fixes
1 parent 9fae1cf commit bd2ffbf

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ jobs:
132132
fail-on-cache-miss: true
133133

134134
- name: Install uv for speed
135-
uses: yezz123/setup-uv@v4
135+
uses: astral-sh/setup-uv@v5
136136
with:
137-
uv-version: "0.5.4"
137+
version: "0.5.26"
138138

139139
- name: Build and test wheels
140140
uses: pypa/cibuildwheel@v2.22.0

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
arch: ${{ matrix.msvc-dev-arch }}
5858

5959
- name: Install uv for speed
60-
uses: yezz123/setup-uv@v4
60+
uses: astral-sh/setup-uv@v5
6161
with:
62-
uv-version: "0.5.4"
62+
version: "0.5.26"
6363

6464
- name: Build and test wheels
6565
uses: pypa/cibuildwheel@v2.22.0

dev.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def prep_env(self):
446446
pprint("pip version is too old or unknown, attempting pip upgrade")
447447
pip_install(self.py, ["-U", "pip"])
448448

449-
deps = self.deps.get(self.args["command"])
449+
deps = self.deps.get(self.args["command"], set())
450450
ignored_deps = self.args["ignore_dep"]
451451
deps_filtered = deps.copy()
452452
if ignored_deps:
@@ -456,7 +456,7 @@ def prep_env(self):
456456
deps_filtered.remove(constr)
457457
break
458458

459-
if deps:
459+
if deps_filtered:
460460
pprint("Installing dependencies")
461461
pip_install(self.py, list(deps_filtered))
462462

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pygame_ce = 'pygame.__briefcase.pygame_ce:PygameCEGuiBootstrap'
5454
[build-system]
5555
requires = [
5656
"meson-python<=0.17.1",
57-
"meson<=1.6.0",
57+
"meson<=1.7.0",
5858
"ninja<=1.12.1",
5959
"cython<=3.0.11",
6060
"sphinx<=8.1.3",

0 commit comments

Comments
 (0)