diff options
author | Marcel Plch <gmarcel.plch@gmail.com> | 2018-06-08 11:06:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-06-08 13:42:18 (GMT) |
commit | b6e7f2c37fbc4498324995928521a4335fc8ac32 (patch) | |
tree | 76e2536d392351f9574030f15f45d95f60107bc0 /Modules/FindPythonInterp.cmake | |
parent | 90ebc32d9e7400a590973b30c99f2986bcb2b755 (diff) | |
download | CMake-b6e7f2c37fbc4498324995928521a4335fc8ac32.zip CMake-b6e7f2c37fbc4498324995928521a4335fc8ac32.tar.gz CMake-b6e7f2c37fbc4498324995928521a4335fc8ac32.tar.bz2 |
FindPython: Add support for version 3.8
Python 3.7 is about to be released, making the development version 3.8.
Diffstat (limited to 'Modules/FindPythonInterp.cmake')
-rw-r--r-- | Modules/FindPythonInterp.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindPythonInterp.cmake b/Modules/FindPythonInterp.cmake index bd64762..370e5e42 100644 --- a/Modules/FindPythonInterp.cmake +++ b/Modules/FindPythonInterp.cmake @@ -44,7 +44,7 @@ unset(_Python_NAMES) set(_PYTHON1_VERSIONS 1.6 1.5) set(_PYTHON2_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0) -set(_PYTHON3_VERSIONS 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) +set(_PYTHON3_VERSIONS 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) if(PythonInterp_FIND_VERSION) if(PythonInterp_FIND_VERSION_COUNT GREATER 1) |