This repository was archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Testing if python 3.8 is available. #62
Closed
Closed
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
96b450f
Testing if python 3.8 is available.
charris 4a7976f
Update multibuild to latest devel.
charris c4f5c42
test manylinux2010
charris 1b365bb
Update multibuild to f0bff09.
charris 0d9f0e7
Disable all but 3.8 builds.
charris 0b995f0
Fix .appveyor parse error, maybe.
charris 29c2882
Try another appveyor fix.
charris 374289d
Try latest manylinux1.
charris 53c211d
Be explicit about manylinux version=1
charris f63ac91
Try i386
charris e61d303
try again
charris File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you try here to use the manylinux2010 image by adding
MB_ML_VER=2010
? In order to use this you will also need to update the multibuild subrepo to the HEAD of the devel branchThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sadly, it failed at the same spot, it cannot find
pip
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did download 2010 however.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The path in the docker image is
/opt/python/cp38-cp38
, multibuild expects am
suffix/opt/python/cp38-cp38m
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could test locally on ubuntu 18.04 with
and to debug the docker I added
set -x
to the top ofmultibuild/docker_build_wrap.sh
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the difference between a python with and without the
m
suffix?