Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the wheel count check for pex building #7933

Merged
merged 1 commit into from Jun 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions build-support/bin/release.sh
Expand Up @@ -513,8 +513,8 @@ function fetch_and_check_prebuilt_wheels() {
fi
done

# N.B. For platform-specific wheels, we expect 6 wheels: {linux,osx} * {cp27m,cp27mu,abi3}.
if [ "${cross_platform}" != "true" ] && [ ${#packages[@]} -ne 6 ]; then
# N.B. For platform-specific wheels, we expect 2 wheels: {linux,osx} * {abi3,}.
if [ "${cross_platform}" != "true" ] && [ ${#packages[@]} -ne 2 ]; then
missing+=("${PACKAGE} (expected whls for each platform: had only ${packages[@]})")
continue
fi
Expand Down