summaryrefslogtreecommitdiff
path: root/Modules/FindPythonLibs.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/FindPythonLibs.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/FindPythonLibs.cmake')
-rw-r--r--Modules/FindPythonLibs.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindPythonLibs.cmake b/Modules/FindPythonLibs.cmake
index 1d62ac43ea..d3ec7beec6 100644
--- a/Modules/FindPythonLibs.cmake
+++ b/Modules/FindPythonLibs.cmake
@@ -79,7 +79,7 @@ set(CMAKE_FIND_FRAMEWORK LAST)
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(PythonLibs_FIND_VERSION)
if(PythonLibs_FIND_VERSION_COUNT GREATER 1)