Skip to content

Commit

Permalink
[Extensions] Add Python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanwweber authored and speth committed Aug 2, 2024
1 parent 1da20b6 commit edf7bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/application.h
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ class Application
vector<string> inputDirs;

//! Versions of Python to consider when attempting to load user extensions
vector<string> m_pythonSearchVersions = {"3.12", "3.11", "3.10", "3.9", "3.8"};
vector<string> 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<string> warnings;
Expand Down

0 comments on commit edf7bb8

Please sign in to comment.