Skip to content

Commit

Permalink
[CI] Fix wheel install
Browse files Browse the repository at this point in the history
  • Loading branch information
hcho3 committed Feb 16, 2024
1 parent 7333eb9 commit 5d93447
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/windows-wheel-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ jobs:
cache-env: true
environment-name: dev
environment-file: ops/conda_env/dev.yml
- name: Display Conda env
run: |
micromamba info
micromamba list
- name: Build wheel
run: |
call ops/build-windows.bat
Expand Down
2 changes: 1 addition & 1 deletion ops/test-win-python-wheel.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ setlocal enabledelayedexpansion
python tests\ci_build\rename_whl.py python\dist %COMMIT_ID% win_amd64
if %errorlevel% neq 0 exit /b %errorlevel%
for /R %%i in (python\\dist\\*.whl) DO (
python -m pip install "%%i"
python -m pip install --force-reinstall "%%i"
if !errorlevel! neq 0 exit /b !errorlevel!
)

Expand Down

0 comments on commit 5d93447

Please sign in to comment.