From ac701168cad19b0f358d7c75afdeeeed76684d10 Mon Sep 17 00:00:00 2001 From: Uriel Sandoval Date: Wed, 8 May 2024 13:55:16 -0600 Subject: [PATCH] Adds setuptools as build dependency --- .github/workflows/linux_build.yml | 2 +- .github/workflows/macos_build.yml | 2 +- .github/workflows/windows_build.yml | 2 +- Jenkinsfile | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index 089f0888..693fd10d 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -34,7 +34,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest pytest-cov coveralls numpy + pip install setuptools setuptools_scm build wheel pytest pytest-cov coveralls numpy - name: Install libraries run: | diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index d0c062b8..077bb4a7 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -33,7 +33,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest pytest-cov coveralls numpy + pip install setuptools setuptools_scm build wheel pytest pytest-cov coveralls numpy - name: Install libraries run: | diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 486287bc..05beb3b3 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -199,7 +199,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest pytest-cov coveralls wheel numpy build + pip install setuptools setuptools_scm pytest pytest-cov coveralls wheel numpy build - name: Get openblas diff --git a/Jenkinsfile b/Jenkinsfile index 892cacc3..213e513e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ pipeline { stage('Install python dependencies') { steps { sh '''python -m pip install --upgrade pip - pip install --upgrade pytest pytest-cov coveralls numpy''' + pip install --upgrade setuptools setuptools_scm build wheel pytest pytest-cov coveralls numpy''' } } @@ -124,7 +124,7 @@ pipeline { stage('Install python dependencies') { steps { sh '''python3 -m pip install --upgrade pip - pip3 install --upgrade pytest pytest-cov coveralls numpy''' + pip3 install --upgrade setuptools setuptools_scm build wheel pytest pytest-cov coveralls numpy''' } }