-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Update the release scripts to deal with 3.8 and new filenames #7732
Conversation
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.
Python 3.8 support is great! I have a few questions, but otherwise looks good.
self.run_in_virtualenv('misc/download-mypyc-wheels.py %s' % self.version) | ||
self.run_in_virtualenv( | ||
'%s %s' % | ||
(os.path.abspath('misc/download-mypyc-wheels.py'), self.version)) |
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.
This just allows the script to be run with an arbitrary current working directory?
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.
This makes it so that we run the download-mypyc-wheels script in the current directory and not in the checkout, since I fixed the script after. I'll add a comment
@@ -9,14 +9,14 @@ | |||
|
|||
|
|||
PLATFORMS = [ | |||
'macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64', | |||
'macosx_10_{macos_ver}_x86_64', |
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 caused this change? What's the distinction between x86_64
and intel
?
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 upgraded to a newer version of multibuild
, the project we use to build the wheels, and it changed what sort of filenames it produced.
No description provided.