Skip to content

Commit

Permalink
Update CI Python versions where they have updated upstream (#117)
Browse files Browse the repository at this point in the history
* Travis CI macOS xcode9.4 has Python 3.7.5

* Travis make no guarantees for Python version
  stability on their images for macOS.

* Appveyor MSYS seems to have Python 3.7.5, not 3.6.8
  • Loading branch information
hjmallon authored and rbsheth committed Jan 6, 2020
1 parent 4b5d226 commit fe22843
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmake/projects/hunter_venv/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ hunter_add_version(

# DOCUMENTATION_START {
if(APPLE)
set(__hunter_venv_default_python "3.6.5")
set(__hunter_venv_default_python "3.7.5")
elseif(MSYS)
set(__hunter_venv_default_python "3.7.5")
elseif(WIN32)
set(__hunter_venv_default_python "3.6.8")
else()
Expand Down

0 comments on commit fe22843

Please sign in to comment.