Skip to content

Commit

Permalink
travis: bump MacPython version (urllib3#1688)
Browse files Browse the repository at this point in the history
In particular, Python 3.7.4 ships with OpenSSL 1.1.1 and addresses
CVE-2019-9740. Those two changes caused bugs in our test suite (but
they're already fixed as we've seen them in Windows too.)
  • Loading branch information
pquentin authored and sethmlarson committed Sep 22, 2019
1 parent c71985f commit cda26d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ install_mac_python() {
if [[ "$(uname -s)" == 'Darwin' ]]; then
# Mac OS setup.
case "${NOX_SESSION}" in
test-2.7) MACPYTHON=2.7.15 ;;
test-3.5) MACPYTHON=3.5.4 ;;
test-3.6) MACPYTHON=3.6.7 ;;
test-3.7) MACPYTHON=3.7.1 ;;
test-2.7) MACPYTHON=2.7.16 ;;
test-3.5) MACPYTHON=3.5.4 ;; # last binary release
test-3.6) MACPYTHON=3.6.8 ;; # last binary release
test-3.7) MACPYTHON=3.7.4 ;;
esac

# Install additional versions as needed.
Expand Down

0 comments on commit cda26d7

Please sign in to comment.