Skip to content

Commit 44a3874

Browse files
Update macOS CI workflow for Python 3.13 and tool checks (#5723)
Adds UV_PYTHON environment variable set to 3.13 and updates the tool version check step to use 'uv run python --version' instead of 'python3 --version'. This ensures the workflow uses the correct Python version and improves consistency in tool invocation.
1 parent 321c28b commit 44a3874

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/macos-integration-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ env:
2828
FLET_TEST_SCREENSHOTS_PIXEL_RATIO: "2.0"
2929
FLET_TEST_SCREENSHOTS_SIMILARITY_THRESHOLD: "99.0"
3030
FLET_TEST_DISABLE_FVM: "1"
31+
UV_PYTHON: "3.13"
3132

3233
jobs:
3334
test-macos:
@@ -53,7 +54,7 @@ jobs:
5354

5455
- name: Show tool versions
5556
run: |
56-
python3 --version && uv --version && pod --version && flutter --version
57+
uv --version && uv run python --version && pod --version && flutter --version
5758
5859
- name: Run integration tests (${{ matrix.suite }})
5960
working-directory: sdk/python

0 commit comments

Comments
 (0)