Skip to content

Commit

Permalink
Fix installation mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
ni-jfitzger committed Apr 27, 2024
1 parent 4b7edb9 commit 8a01c9f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/actions/run_examples_using_pypi_uploads/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ runs:
# To keep things simple, we just use pip and pytest directly for a single Python version.
- run: py -3.12 -m pip install ${{ inputs.module_name }}==${{ inputs.module_version }} pytest
shell: powershell
- if: ${{ inputs.module_name }} == "nitclk"
run: py -3.12 -m pip install niscope
- if: ${{ inputs.module_name == 'nitclk' }}
run: py -3.12 -m pip install niscope==${{ inputs.module_version }}
shell: powershell
- if: ${{ inputs.module_name == 'niscope' }}
run: py -3.12 -m pip install numpy
shell: powershell
- run: |
cd src/${{ inputs.module_name }}
Expand Down

0 comments on commit 8a01c9f

Please sign in to comment.