Skip to content

Commit c8f5f03

Browse files
committed
Add option to download source distributions without binary dependencies
1 parent bb52ff2 commit c8f5f03

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
echo "Attempt $i/90: Trying to download wheel and sdist..."
5555
rm -rf /tmp/pypi_check_download && mkdir -p /tmp/pypi_check_download
5656
pip download --no-deps --dest /tmp/pypi_check_download ${PACKAGE_NAME}==${VERSION} >/dev/null 2>&1
57+
pip download --no-deps --no-binary=:all: --dest /tmp/pypi_check_download ${PACKAGE_NAME}==${VERSION} >/dev/null 2>&1
5758
WHEEL=$(ls /tmp/pypi_check_download/*.whl 2>/dev/null | head -1)
5859
SDIST=$(ls /tmp/pypi_check_download/*.tar.gz 2>/dev/null | head -1)
5960
if [[ -n "$WHEEL" && -n "$SDIST" ]]; then

0 commit comments

Comments
 (0)