Skip to content

Commit b3fe95d

Browse files
committed
Fix build wheels testing: don't install [test]
Don't run `pip install asyncpg[test]` to test wheels; the [test] deps only include flake8 & uvloop. The former isn't necessary; the latter doesn't work on manylinux1.
1 parent dcef298 commit b3fe95d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci/build-manylinux-wheels.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ for whl in /io/dist/*.whl; do
1616
rm /io/dist/*-linux_*.whl
1717
done
1818

19-
${PIP} install ${PYMODULE}[test] -f "file:///io/dist"
19+
${PIP} install ${PYMODULE} -f "file:///io/dist"
2020

2121
# Grab docker host, where Postgres should be running.
2222
export PGHOST=$(ip route | awk '/default/ { print $3 }' | uniq)

.ci/travis-build-wheels.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ elif [ "${TRAVIS_OS_NAME}" == "osx" ]; then
6666
make clean
6767
python setup.py bdist_wheel
6868

69-
pip install ${PYMODULE}[test] -f "file:///${_root}/dist"
69+
pip install ${PYMODULE} -f "file:///${_root}/dist"
7070
make -C "${_root}" ASYNCPG_VERSION="${PACKAGE_VERSION}" testinstalled
7171

7272
_upload_wheels

0 commit comments

Comments
 (0)