aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2019-12-05 12:15:24 +0100
committerChristian Tismer <tismer@stackless.com>2019-12-05 13:29:03 +0100
commit6776a3c4a9b60fac57db0486644086669fc98724 (patch)
tree6ee5cf05be2fe87ab25bccf1360c0a3023940a61 /build_scripts
parent45a3efb4e179e83f1bea69cccb190945fbc8c1f8 (diff)
Update config.py to allow Python 3.8 in pip
After Python 3.8 works with PySide, we can remove the restriction to Python 3.7 from "python_requires". Change-Id: I5be5364cda14c38aabc2bf579165efbb614969e0 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'build_scripts')
-rw-r--r--build_scripts/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/config.py b/build_scripts/config.py
index 3a590ffb0..4ec2af3de 100644
--- a/build_scripts/config.py
+++ b/build_scripts/config.py
@@ -134,7 +134,7 @@ class Config(object):
setup_kwargs['zip_safe'] = False
setup_kwargs['cmdclass'] = cmd_class_dict
setup_kwargs['version'] = package_version
- setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.8"
+ setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.9"
if quiet: