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

Use manylinux2014_x86_64 when building a wheel for dev version of onnx #5446

Merged
merged 1 commit into from
Mar 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mlflow/ml-package-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,10 @@ onnx:
# Build wheel
python_version=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')
docker run --rm -v $(pwd):/github/workspace --workdir /github/workspace --entrypoint bash \
quay.io/pypa/manylinux2010_x86_64 .github/workflows/manylinux/entrypoint.sh $python_version manylinux2010_x86_64 pull_request
quay.io/pypa/manylinux2014_x86_64 .github/workflows/manylinux/entrypoint.sh $python_version manylinux2014_x86_64 pull_request

# Install wheel
pip install dist/*manylinux2010_x86_64.whl
pip install dist/*manylinux2014_x86_64.whl
Comment on lines +226 to +229
Copy link
Member Author

@harupy harupy Mar 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

onnx/onnx#4017 indicates manylinux2010 is too old and causes the issue.


models:
minimum: "1.5.0"
Expand Down