This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
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.
@mithrandi pointed out that incremental fails to install because setuptools downloads requirements in a distribution's
setup_requires, notpip. That means we need a Python installation whose (urllib.request|urllib2).urlopencan speak TLS 1.2 to PyPI.org.I've installed Python 2.7.14, 3.5.3, and 3.6.5 under the buildbot user via
pyenv;pyenvevidently downloads OpenSSL 1.0.2 and links_sslagainst it on older macOS releases:https://github.com/pyenv/pyenv/blob/b960f863ccf81e1311706b0976fde78e58141704/plugins/python-build/share/python-build/3.6.5#L2
https://github.com/pyenv/pyenv/blob/b960f863ccf81e1311706b0976fde78e58141704/plugins/python-build/bin/python-build#L1479-L1484
I did not use brew because other things have been installed in /usr/local/bin, and I want everything I'm doing to be reversible.