Skip to content

Commit 1f241ed

Browse files
committed
Merge branch 'main' into partial-granularity-type-support
2 parents de43c62 + 953f379 commit 1f241ed

File tree

2 files changed

+15
-21
lines changed

2 files changed

+15
-21
lines changed

.github/containers/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ RUN mv "${HOME}/.local/bin/python3.11" "${HOME}/.local/bin/pypy3.11" && \
115115
mv "${HOME}/.local/bin/python3.10" "${HOME}/.local/bin/pypy3.10"
116116

117117
# Install CPython versions
118-
RUN uv python install -f cp3.14 cp3.13 cp3.12 cp3.11 cp3.10 cp3.9 cp3.8
118+
RUN uv python install -f cp3.14 cp3.14t cp3.13 cp3.12 cp3.11 cp3.10 cp3.9 cp3.8
119119

120120
# Set default Python version to CPython 3.13
121121
RUN uv python install -f --default cp3.13

.github/workflows/tests.yml

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,8 @@ jobs:
283283
windows:
284284
env:
285285
TOTAL_GROUPS: 1
286-
UV_PYTHON: "3.13"
287-
UV_PYTHON_DOWNLOADS: "never"
288-
UV_PYTHON_PREFERENCE: "only-system"
286+
UV_PYTHON_DOWNLOADS: "manual"
287+
UV_PYTHON_PREFERENCE: "only-managed"
289288

290289
strategy:
291290
fail-fast: false
@@ -301,16 +300,14 @@ jobs:
301300
run: |
302301
git fetch --tags origin
303302
304-
- name: Install Python
305-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
306-
with:
307-
python-version: |
308-
3.13
309-
3.14
310-
311303
- name: Install uv
312304
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2
313305

306+
- name: Install Python
307+
run: |
308+
uv python install -f 3.13 3.14 3.14t
309+
uv python install -f --default 3.13
310+
314311
- name: Install Dependencies
315312
run: |
316313
uv tool install tox --with tox-uv
@@ -355,9 +352,8 @@ jobs:
355352
windows_arm64:
356353
env:
357354
TOTAL_GROUPS: 1
358-
UV_PYTHON: "3.13"
359-
UV_PYTHON_DOWNLOADS: "never"
360-
UV_PYTHON_PREFERENCE: "only-system"
355+
UV_PYTHON_DOWNLOADS: "manual"
356+
UV_PYTHON_PREFERENCE: "only-managed"
361357

362358
strategy:
363359
fail-fast: false
@@ -373,16 +369,14 @@ jobs:
373369
run: |
374370
git fetch --tags origin
375371
376-
- name: Install Python
377-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
378-
with:
379-
python-version: |
380-
3.13
381-
3.14
382-
383372
- name: Install uv
384373
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2
385374

375+
- name: Install Python
376+
run: |
377+
uv python install -f 3.13 3.14 3.14t
378+
uv python install -f --default 3.13
379+
386380
- name: Install Dependencies
387381
run: |
388382
uv tool install tox --with tox-uv

0 commit comments

Comments
 (0)