This repository was archived by the owner on Jan 23, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,5 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
99COPY --from=ghcr.io/astral-sh/uv:latest /uvx /bin/uvx
1010COPY ./.python-version ./
1111
12- RUN uv python pin "$(cat .python-version)"
13-
1412# Install required tools for development
1513RUN apt-get update && apt-get install -y iperf3 libusb-dev
Original file line number Diff line number Diff line change 55 "dockerfile" : " Dockerfile"
66 },
77 "postCreateCommand" : " make sync" ,
8- "postStartCommand" : " uv run pre-commit install" ,
8+ "postStartCommand" : " uv python pin 3.12 && uv run pre-commit install" ,
99 "remoteUser" : " vscode" ,
1010 // Mount USB devices to devcontainer for tests
1111 "mounts" : [
Original file line number Diff line number Diff line change 4242 version : " latest"
4343
4444 - name : Install Python
45- run : uv python install
45+ run : |
46+ uv python pin 3.12
47+ uv python install
4648
4749 - name : Setup Pages
4850 id : pages
8082 version : " latest"
8183
8284 - name : Install Python
83- run : uv python install
85+ run : |
86+ uv python pin 3.12
87+ uv python install
8488
8589 - name : Build the documentation for the current version (no warnings allowed)
8690 run : make sync && make docs
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments