This is an automated email from the ASF dual-hosted git repository. baunsgaard pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/systemds.git
commit 6681c34171362809157f89ef08d03ab791ef3b14 Author: baunsgaard <[email protected]> AuthorDate: Tue Nov 8 14:33:32 2022 +0100 [MINOR] Install wheel before sklearn GitHub Actions This address a install flaw in python where sklearn does not install properly if wheel is not installed first. --- .github/workflows/python.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 9b88a2915b..a968094b7b 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -99,7 +99,8 @@ jobs: # Install pip twice to update past the versions. pip install --upgrade pip pip install --upgrade pip - pip install numpy py4j wheel scipy sklearn requests pandas unittest-parallel + pip install wheel + pip install numpy py4j scipy sklearn requests pandas unittest-parallel - name: Build Python Package run: |
