aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2018-06-25 15:24:11 +0200
committerChristian Tismer <tismer@stackless.com>2018-06-26 07:39:34 +0000
commit4a32f9d00b043b7255b590b95e9b35e9de44c4ed (patch)
treeaa92fcc7b8f325c714b224995a3a2680ec9a5cec /build_scripts
parent11c443016275093e4c713a3fbafdaea8967fca7c (diff)
Prepare Limited API for Python 3.7
PySide has successfully been tested with the Python 3.7 branch. There will be no change in the areas that are important for us. It is then safe to bump the supported version and the limited API version checks to fully include Python 3.7. The macro errors in the limited API was fixed by a pull request, but it was too late to get it into 3.7rc1. The error workaround was therefore extracted into pep384_issue33738.cpp and will be deactivated later. Change-Id: Iec3f277b02cac03a5cf44cbcf955ddc690c112e5 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'build_scripts')
-rw-r--r--build_scripts/wheel_override.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/wheel_override.py b/build_scripts/wheel_override.py
index f6eaedf1c..0532a5a26 100644
--- a/build_scripts/wheel_override.py
+++ b/build_scripts/wheel_override.py
@@ -195,6 +195,6 @@ if wheel_module_exists:
# create a properly named package.
limited_api_enabled = OPTION_LIMITED_API and sys.version_info[0] >= 3
if limited_api_enabled:
- self.py_limited_api = "cp35.cp36"
+ self.py_limited_api = "cp35.cp36.cp37"
_bdist_wheel.finalize_options(self)