1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00

Change how windows does pip install (#427)

This commit is contained in:
Dave Keeshan 2024-02-04 10:07:01 +00:00 committed by GitHub
parent a0bebbf72d
commit 9f25c072f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,9 +133,9 @@ jobs:
echo "C:\ProgramData\Chocolatey\bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --upgrade -r requirements.txt
pip install .
python -m pip install --upgrade pip
python -m pip install --upgrade -r requirements.txt
python -m pip install .
- name: Run Tests
run: |
make ${{ env.CI_TARGET }}