We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce6aae1 commit 15b38f7Copy full SHA for 15b38f7
1 file changed
.github/workflows/experiment.yaml
@@ -60,7 +60,15 @@ jobs:
60
61
- name: Execute Chunk
62
run: |
63
+ # The Engine: uv handles virtualenvs, nox delegates to uv
64
export NOX_DEFAULT_VENV_BACKEND=uv
65
+
66
+ # The Fix: Forces uv to install `pip` in the venv so legacy `pip freeze` commands don't crash
67
+ export UV_VENV_SEED=1
68
69
+ # Speed optimization: Pre-compile python bytecode
70
+ export UV_COMPILE_BYTECODE=1
71
72
FAILED=0
73
74
for pkg in ${{ matrix.chunk }}; do
0 commit comments