Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
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: 0 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,5 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:latest /uvx /bin/uvx
COPY ./.python-version ./

RUN uv python pin "$(cat .python-version)"

# Install required tools for development
RUN apt-get update && apt-get install -y iperf3 libusb-dev
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dockerfile": "Dockerfile"
},
"postCreateCommand": "make sync",
"postStartCommand": "uv run pre-commit install",
"postStartCommand": "uv python pin 3.12 && uv run pre-commit install",
"remoteUser": "vscode",
// Mount USB devices to devcontainer for tests
"mounts": [
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
version: "latest"

- name: Install Python
run: uv python install
run: |
uv python pin 3.12
uv python install

- name: Setup Pages
id: pages
Expand Down Expand Up @@ -80,7 +82,9 @@ jobs:
version: "latest"

- name: Install Python
run: uv python install
run: |
uv python pin 3.12
uv python install

- name: Build the documentation for the current version (no warnings allowed)
run: make sync && make docs
Expand Down
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

Loading