Skip to content

Commit

Permalink
conditionally uninstall numpy to see if 3.8.10 passes smoke test; som…
Browse files Browse the repository at this point in the history
…e additional refactoring/code improvements
  • Loading branch information
mitchelbaker-cisa committed Aug 2, 2024
1 parent 86489d1 commit 9087c5e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/actions/setup-dependencies-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ runs:
pip install pytest
pip install selenium
pip uninstall -y numpy
pip install numpy==1.26.4
# Below python v3.9, a lower numpy v1.24.4 is used
$pythonVersion = [version]${{ inputs.python-version }}
if ($pythonVersion -ge [version]"3.9") {
pip uninstall -y numpy
pip install numpy==1.26.4
}
#$pythonVersion = [version]${{ inputs.python-version }}
#if ($pythonVersion -ge [version]"3.9") {
# pip uninstall -y numpy
# pip install numpy==1.26.4
#}
- name: Download OPA executable
shell: powershell
Expand Down

0 comments on commit 9087c5e

Please sign in to comment.