mods to enable python3.12

This commit is contained in:
Mark E. Fuller 2023-08-26 01:04:03 +03:00 committed by Ingmar Schoegl
parent 9ee13ebb4e
commit 27f8362f53
5 changed files with 5 additions and 2 deletions

View File

@ -65,7 +65,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
python-version: ['3.8', '3.10', '3.11']
python-version: ['3.8', '3.10', '3.11', '3.12']
os: ['ubuntu-20.04', 'ubuntu-22.04']
fail-fast: false
env:

View File

@ -27,6 +27,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Physics

View File

@ -23,6 +23,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Physics
project_urls =

View File

@ -27,6 +27,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Physics

View File

@ -434,7 +434,7 @@ protected:
vector<string> inputDirs;
//! Versions of Python to consider when attempting to load user extensions
vector<string> m_pythonSearchVersions = {"3.11", "3.10", "3.9", "3.8"};
vector<string> m_pythonSearchVersions = {"3.12", "3.11", "3.10", "3.9", "3.8"};
//! Set of deprecation warnings that have been emitted (to suppress duplicates)
set<string> warnings;