diff options
author | Miro HronĨok <miro@hroncok.cz> | 2020-01-14 18:41:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-01-14 20:02:19 (GMT) |
commit | f6474214b39337f0c30e29bb986f93c3de730d4c (patch) | |
tree | eeb7c90fb51e76b4676bf24f5a5f8b8a2d02f0d1 /Modules/FindPythonInterp.cmake | |
parent | 01b43e85cfece674e26069bf55903fb7521bad38 (diff) | |
download | CMake-f6474214b39337f0c30e29bb986f93c3de730d4c.zip CMake-f6474214b39337f0c30e29bb986f93c3de730d4c.tar.gz CMake-f6474214b39337f0c30e29bb986f93c3de730d4c.tar.bz2 |
FindPython: Add support for version 3.9
Development versions of Python 3.9.0 are already out there.
See PEP 596 -- Python 3.9 Release Schedule:
https://www.python.org/dev/peps/pep-0596/
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 ccc7d5b..1e01a99 100644 --- a/Modules/FindPythonInterp.cmake +++ b/Modules/FindPythonInterp.cmake @@ -54,7 +54,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.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) +set(_PYTHON3_VERSIONS 3.9 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) |