Skip to content
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/containers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ RUN mv "${HOME}/.local/bin/python3.11" "${HOME}/.local/bin/pypy3.11" && \
mv "${HOME}/.local/bin/python3.10" "${HOME}/.local/bin/pypy3.10"

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

# Set default Python version to CPython 3.13
RUN uv python install -f --default cp3.13
Expand Down
34 changes: 14 additions & 20 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,8 @@ jobs:
windows:
env:
TOTAL_GROUPS: 1
UV_PYTHON: "3.13"
UV_PYTHON_DOWNLOADS: "never"
UV_PYTHON_PREFERENCE: "only-system"
UV_PYTHON_DOWNLOADS: "manual"
UV_PYTHON_PREFERENCE: "only-managed"

strategy:
fail-fast: false
Expand All @@ -301,16 +300,14 @@ jobs:
run: |
git fetch --tags origin

- name: Install Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
with:
python-version: |
3.13
3.14

- name: Install uv
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2

- name: Install Python
run: |
uv python install -f 3.13 3.14 3.14t
uv python install -f --default 3.13

- name: Install Dependencies
run: |
uv tool install tox --with tox-uv
Expand Down Expand Up @@ -355,9 +352,8 @@ jobs:
windows_arm64:
env:
TOTAL_GROUPS: 1
UV_PYTHON: "3.13"
UV_PYTHON_DOWNLOADS: "never"
UV_PYTHON_PREFERENCE: "only-system"
UV_PYTHON_DOWNLOADS: "manual"
UV_PYTHON_PREFERENCE: "only-managed"

strategy:
fail-fast: false
Expand All @@ -373,16 +369,14 @@ jobs:
run: |
git fetch --tags origin

- name: Install Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # 6.0.0
with:
python-version: |
3.13
3.14

- name: Install uv
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2

- name: Install Python
run: |
uv python install -f 3.13 3.14 3.14t
uv python install -f --default 3.13

- name: Install Dependencies
run: |
uv tool install tox --with tox-uv
Expand Down
Loading