aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/config.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2022-10-17 09:44:20 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-10-17 08:25:18 +0000
commit01a6093024e0d2e9863fda182907a491684bc4c8 (patch)
treeb5f6fc874a156ee7749ee775f9dbe4be46c27cc2 /build_scripts/config.py
parent9046e7066812706850c1e9f3a0735206262e4252 (diff)
remove mentions to Python 3.6
PySide 6.4.0 is the first release that only supports Python 3.7+ Task-number: PYSIDE-2085 Change-Id: I92016cc438a9272eba3f0d379bb0c4b87bee52f5 Pick-to: 6.4 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 854d5eb8c..54b9165a9 100644
--- a/build_scripts/config.py
+++ b/build_scripts/config.py
@@ -59,7 +59,6 @@ class Config(object):
self.python_version_classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
@@ -114,7 +113,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.6, <3.11"
+ setup_kwargs['python_requires'] = ">=3.7, <3.11"
if quiet:
# Tells distutils / setuptools to be quiet, and only print warnings or errors.