Skip to content

Commit

Permalink
added explicit numpy installation to GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sllynn committed Nov 9, 2023
1 parent aee46b3 commit fd853bb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/python_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
shell: bash
run: |
cd python
pip install build wheel pyspark==${{ matrix.spark }}
pip install build wheel pyspark==${{ matrix.spark }} numpy==${{ matrix.numpy }}
pip install .
- name: Test and build python package
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
strategy:
matrix:
python: [ 3.9 ]
numpy: [ 1.21.5 ]
spark: [ 3.2.1 ]
R: [ 4.1.2 ]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
strategy:
matrix:
python: [ 3.9 ]
numpy: [ 1.21.5 ]
spark: [ 3.2.1 ]
R: [ 4.1.2 ]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_r.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
strategy:
matrix:
python: [ 3.9 ]
numpy: [ 1.21.5 ]
spark: [ 3.2.1 ]
R: [ 4.1.2 ]
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
strategy:
matrix:
python: [ 3.9 ]
numpy: [ 1.21.5 ]
spark: [ 3.2.1 ]
R: [ 4.1.2 ]
steps:
Expand Down

0 comments on commit fd853bb

Please sign in to comment.