Skip to content

Commit

Permalink
Add a workaround for Mac OS Python 3.5
Browse files Browse the repository at this point in the history
The problem is a TLS protocol mismatch (PyPI wants TLS 1.2 or newer,
Python 3.5 doesn't support it, pip takes great pains to use alternative
http/tls implementations to make everything work somehow).
  • Loading branch information
mgedmin committed Nov 10, 2019
1 parent 9f7cdf2 commit 80f215d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -74,6 +74,9 @@ before_install:
install:
- pip install -U pip setuptools
- pip install -U coveralls coverage
# pip install zope.proxy here because because setup_requires will use
# easy_install, which fails on Python 3.5 on Mac OS
- pip install -U zope.proxy
- pip install -U -e .[test,docs]

script:
Expand Down

0 comments on commit 80f215d

Please sign in to comment.