Skip to content

Commit cbc4397

Browse files
committed
CI: Use pip because setuptools will not avoid an incompatible numpy
1 parent 6d8e5cf commit cbc4397

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
2222
python-version: [3.6, 3.7, 3.8, 3.9]
2323
architecture: ['x64', 'x86']
24-
install: ['setup']
24+
install: ['pip']
2525
check: ['test']
2626
pip-flags: ['']
2727
depends: ['REQUIREMENTS']
@@ -54,7 +54,7 @@ jobs:
5454
# Clean install imports only with package-declared dependencies
5555
- os: ubuntu-latest
5656
python-version: 3.6
57-
install: setup
57+
install: pip
5858
check: skiptests
5959
pip-flags: ''
6060
depends: ''

tools/ci/build_archive.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ elif [ "$INSTALL_TYPE" == "wheel" ]; then
2121
elif [ "$INSTALL_TYPE" == "archive" ]; then
2222
export ARCHIVE="package.tar.gz"
2323
git archive -o $ARCHIVE HEAD
24+
elif [ "$INSTALL_TYPE" == "pip" ]; then
25+
export ARCHIVE="."
2426
fi
2527

2628
set +eux

0 commit comments

Comments
 (0)