From edf7bb83ad768cc723cbf50a536ad017a9a079cf Mon Sep 17 00:00:00 2001 From: Bryan Weber Date: Thu, 1 Aug 2024 17:30:15 -0400 Subject: [PATCH] [Extensions] Add Python 3.13 support --- src/base/application.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/application.h b/src/base/application.h index b03c049f14..4330ce9c06 100644 --- a/src/base/application.h +++ b/src/base/application.h @@ -434,7 +434,7 @@ class Application vector inputDirs; //! Versions of Python to consider when attempting to load user extensions - vector m_pythonSearchVersions = {"3.12", "3.11", "3.10", "3.9", "3.8"}; + vector m_pythonSearchVersions = {"3.13", "3.12", "3.11", "3.10", "3.9", "3.8"}; //! Set of deprecation warnings that have been emitted (to suppress duplicates) set warnings;