summaryrefslogtreecommitdiff
path: root/Modules/FindPythonInterp.cmake
diff options
context:
space:
mode:
authorMiro HronĨok <miro@hroncok.cz>2020-01-14 19:41:29 +0100
committerBrad King <brad.king@kitware.com>2020-01-14 15:02:19 -0500
commitf6474214b39337f0c30e29bb986f93c3de730d4c (patch)
treeeeb7c90fb51e76b4676bf24f5a5f8b8a2d02f0d1 /Modules/FindPythonInterp.cmake
parent01b43e85cfece674e26069bf55903fb7521bad38 (diff)
downloadcmake-f6474214b39337f0c30e29bb986f93c3de730d4c.tar.gz
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.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindPythonInterp.cmake b/Modules/FindPythonInterp.cmake
index ccc7d5b585..1e01a99cbe 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)