diff --git a/.github/actions/run_examples_using_pypi_uploads/action.yml b/.github/actions/run_examples_using_pypi_uploads/action.yml index 8dabf5469..1740e23b7 100644 --- a/.github/actions/run_examples_using_pypi_uploads/action.yml +++ b/.github/actions/run_examples_using_pypi_uploads/action.yml @@ -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 }}