From a72239ef610940910b6375f638c0708cd1da97ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristi=C3=A1n=20Maureira-Fredes?= Date: Fri, 18 Mar 2022 11:50:52 +0100 Subject: build: update wheel names - Removing extra cpX arguments from the wheel name - Use PEP600 to include the glibc version on the wheel name, instead of manylinux1. - Use 'abi3' on windows instead of 'none', because it's already supported on Windows Change-Id: I312586b72d38f2c5c4835ba5040d064e44c80e29 Reviewed-by: Qt CI Bot Reviewed-by: Christian Tismer --- build_scripts/utils.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'build_scripts/utils.py') diff --git a/build_scripts/utils.py b/build_scripts/utils.py index cd64bd7bf..3f9c3dd25 100644 --- a/build_scripts/utils.py +++ b/build_scripts/utils.py @@ -63,7 +63,6 @@ except ModuleNotFoundError: # so then the coin_build_instructions.py script is executed, and # import from this file, it was failing. from distutils import log - from distutils import errors try: WindowsError @@ -71,6 +70,10 @@ except NameError: WindowsError = None +def is_64bit(): + return sys.maxsize > 2147483647 + + def filter_match(name, patterns): for pattern in patterns: if pattern is None: -- cgit v1.2.3