1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00

Fix pip install on windows (#422)

* Test

* Move from python -m pip to just pip
This commit is contained in:
Dave Keeshan 2023-10-05 07:41:42 -07:00 committed by GitHub
parent 7e235fc97a
commit 4081474f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

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