Skip to content

Commit

Permalink
fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
r9y9 committed Jun 29, 2024
1 parent 004ce2d commit cdf8ec0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ "${{ runner.os }}" = "Windows" ]; then
pip install "numpy<2.0.0"
else
pip install numpy
fi
pip install torch
pip install -e ".[test,lint]"
- name: Lint with pysen
Expand Down

0 comments on commit cdf8ec0

Please sign in to comment.