Skip to content

Commit c8032a9

Browse files
committed
Fix line continuation character in Windows wheel build.
1 parent ed43119 commit c8032a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/wheel_win_x64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
JAXLIB_RELEASE: true
3939
run: |
4040
python -m pip install uv~=0.5.30
41-
python -m uv pip install -r build/test-requirements.txt \
41+
python -m uv pip install -r build/test-requirements.txt `
4242
--upgrade numpy==2.0.0 scipy==1.13.1
4343
"C:\\msys64\\;C:\\msys64\\usr\\bin\\;" >> $env:GITHUB_PATH
4444
python.exe build\build.py build --wheels=jaxlib `
@@ -58,7 +58,7 @@ jobs:
5858
JAX_SKIP_SLOW_TESTS: true
5959
PY_COLORS: 1
6060
run: |
61-
python -m uv pip install --find-links ${{ github.workspace }}\dist jaxlib \
61+
python -m uv pip install --find-links ${{ github.workspace }}\dist jaxlib `
6262
-e ${{ github.workspace }}
6363
echo "JAX_ENABLE_CHECKS=$JAX_ENABLE_CHECKS"
6464
pytest -n auto --tb=short tests examples

0 commit comments

Comments
 (0)