From e3e0fbc3559d9c3d08a3566f7d8bf03a23017e78 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 23 Jun 2021 00:05:18 +0200 Subject: scripts: Fix distutils deprecation in link_pyqt $ .../.tox/py310/bin/python scripts/link_pyqt.py --tox .tox/py310 :1: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives :1: DeprecationWarning: The distutils.sysconfig module is deprecated, use sysconfig instead See https://bugs.python.org/issue41282 --- scripts/link_pyqt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/link_pyqt.py b/scripts/link_pyqt.py index 0341de096..158cc145d 100644 --- a/scripts/link_pyqt.py +++ b/scripts/link_pyqt.py @@ -189,8 +189,8 @@ def get_venv_lib_path(path): subdir = 'Scripts' if os.name == 'nt' else 'bin' executable = os.path.join(path, subdir, 'python') return run_py(executable, - 'from distutils.sysconfig import get_python_lib', - 'print(get_python_lib())') + 'from sysconfig import get_path', + 'print(get_path("platlib"))') def get_tox_syspython(tox_path): -- cgit v1.2.3-54-g00ecf