Skip to content

Commit f6e6cdc

Browse files
ci: pin uv to 0.10.2 and bump devcontainer Python to 3.12
- publish-pypi.yml: uv 0.9.13 -> 0.10.2 so the published artifact is built with the same uv as CI (Greptile) - devcontainer: pin floating uv:latest -> uv:0.10.2 (Greptile) - devcontainer: Python base 3.9 -> 3.12; a 3.9 devcontainer can't install the package now that requires-python is >=3.12 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 92281bf commit f6e6cdc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ARG VARIANT="3.9"
1+
ARG VARIANT="3.12"
22
FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}
33

44
USER vscode
55

6-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
6+
COPY --from=ghcr.io/astral-sh/uv:0.10.2 /uv /uvx /bin/
77

88
RUN echo "[[ -d .venv ]] && source .venv/bin/activate || export PATH=\$PATH" >> /home/vscode/.bashrc

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install uv
2020
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
2121
with:
22-
version: '0.9.13'
22+
version: '0.10.2'
2323

2424
- name: Publish to PyPI
2525
run: |

0 commit comments

Comments
 (0)