aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/config.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2023-06-08 16:59:50 +0200
committerCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2023-07-14 10:36:12 +0200
commit709c3f0b8a7a597e531506d6024ead26b3a8f08a (patch)
treef0504226484503f65efed5101d9c98b304f7cb7f /build_scripts/config.py
parent4b12b8f558eb52625a458703698030090ae8d50f (diff)
build: remove traces of distutils
Removed mentions, comments, and fallback usages in some sections of the build scripts and documentation. On the CI, we upgrade setuptools in order to avoid having missing functionality, so it shouldn't be an issue. For Shiboken and CMake, there is still a helper that relies on distutils in case people is using python < 3.8.2 Pick-to: 6.5 Change-Id: Ic33abe9fa8bd8564e9d44c8714b7fedd4e50434a Reviewed-by: Simo Fält <simo.falt@qt.io>
Diffstat (limited to 'build_scripts/config.py')
-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 1f2f0b25c..c4db97430 100644
--- a/build_scripts/config.py
+++ b/build_scripts/config.py
@@ -119,7 +119,7 @@ class Config(object):
setup_kwargs['python_requires'] = ">=3.7, <3.12"
if log_level == LogLevel.QUIET:
- # Tells distutils / setuptools to be quiet, and only print warnings or errors.
+ # Tells setuptools to be quiet, and only print warnings or errors.
# Makes way less noise in the terminal when building.
setup_kwargs['verbose'] = 0