Skip to content

Commit

Permalink
Adds setuptools as build dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sanurielf committed May 8, 2024
1 parent 53b227b commit ac70116
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'''
}
}

Expand Down Expand Up @@ -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'''
}
}

Expand Down

0 comments on commit ac70116

Please sign in to comment.