-
Notifications
You must be signed in to change notification settings - Fork 262
macOS update #57
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
macOS update #57
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,11 +13,13 @@ | |
def build(project_dir, package_name, output_dir, test_command, test_requires, before_build, skip, environment): | ||
PythonConfiguration = namedtuple('PythonConfiguration', ['version', 'identifier', 'url']) | ||
python_configurations = [ | ||
PythonConfiguration(version='2.7', identifier='cp27-macosx_10_6_intel', url='https://www.python.org/ftp/python/2.7.13/python-2.7.13-macosx10.6.pkg'), | ||
PythonConfiguration(version='2.7', identifier='cp27-macosx_10_6_intel', url='https://www.python.org/ftp/python/2.7.14/python-2.7.14-macosx10.6.pkg'), | ||
PythonConfiguration(version='3.4', identifier='cp34-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.4.4/python-3.4.4-macosx10.6.pkg'), | ||
PythonConfiguration(version='3.5', identifier='cp35-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.5.3/python-3.5.3-macosx10.6.pkg'), | ||
PythonConfiguration(version='3.6', identifier='cp36-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.6.0/python-3.6.0-macosx10.6.pkg'), | ||
PythonConfiguration(version='3.5', identifier='cp35-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.5.4/python-3.5.4-macosx10.6.pkg'), | ||
PythonConfiguration(version='3.6', identifier='cp36-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg'), | ||
] | ||
get_pip_url = 'https://bootstrap.pypa.io/get-pip.py' | ||
get_pip_script = '/tmp/get-pip.py' | ||
|
||
pkgs_output = subprocess.check_output(['pkgutil', '--pkgs']) | ||
if sys.version_info[0] >= 3: | ||
|
@@ -35,6 +37,9 @@ def call(args, env=None, cwd=None, shell=False): | |
|
||
abs_project_dir = os.path.abspath(project_dir) | ||
|
||
# get latest pip once and for all | ||
call(['curl', '-L', '-o', get_pip_script, get_pip_url]) | ||
|
||
for config in python_configurations: | ||
if skip(config.identifier): | ||
print('cibuildwheel: Skipping build %s' % config.identifier, file=sys.stderr) | ||
|
@@ -63,7 +68,7 @@ def call(args, env=None, cwd=None, shell=False): | |
call([python, '--version'], env=env) | ||
|
||
# install pip & wheel | ||
call([python, '-m', 'ensurepip', '--upgrade'], env=env) | ||
call([python, get_pip_script, '--no-setuptools', '--no-wheel'], env=env) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. any particular reason for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd rather get the script only install pip and let the remaining as it was before. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
call([pip, '--version'], env=env) | ||
call([pip, 'install', 'wheel'], env=env) | ||
call([pip, 'install', 'delocate'], env=env) | ||
|
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.
brew outdated
returns with success if python isn't installed. Perhaps this line should bebrew install python || brew upgrade python
?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 is installed on macOS travis-ci images.
Otherwise, I can change this by
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.
Sorry should be
as install returns success even if already installed.
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.
well, I just did a test and it seems the behavior of brew install is not really consistent.
brew install python exits with 0 on my laptop (python is already installed). It exits with error code on travis-ci.
https://discourse.brew.sh/t/what-exit-code-is-brew-install-supposed-to-return-when-formula-is-already-installed/1607
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 can switch to using a brew file & brew bundle. This works:
https://travis-ci.org/mayeut/cibuildwheel/builds/361196481
Tell me if you want me to use this instead.
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.
Oh that's cool, I didn't know about brew bundle. But seems a little heavy-handed for this. Let's stick with your original for the moment.