Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2023-10-10 15:52:09 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2023-10-11 08:47:04 +0000
commit6c7bb7b6e1008909e49bc04d2a48024309a784cc (patch)
treeeb06984e9bfaa911afdc09c8e2b7d2454a359c09 /build_scripts/config.py
parent6337e4a306babdb4015c248a14ad734b320ed2c1 (diff)
Final details to enable 3.12 wheel compatibility
Change-Id: I0252c4e73e8c214ef8aa418ddf88bc452c0fdf53 Pick-to: 6.6 Task-number: PYSIDE-2230 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'build_scripts/config.py')
-rw-r--r--build_scripts/config.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build_scripts/config.py b/build_scripts/config.py
index 273112d9c..5a711f445 100644
--- a/build_scripts/config.py
+++ b/build_scripts/config.py
@@ -61,7 +61,6 @@ class Config(object):
self.python_version_classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
@@ -117,7 +116,7 @@ class Config(object):
setup_kwargs['zip_safe'] = False
setup_kwargs['cmdclass'] = cmd_class_dict
setup_kwargs['version'] = package_version
- setup_kwargs['python_requires'] = ">=3.7, <3.12"
+ setup_kwargs['python_requires'] = ">=3.8, <3.13"
if log_level == LogLevel.QUIET:
# Tells setuptools to be quiet, and only print warnings or errors.