* [PATCH 0/2] Python: setuptools v60+ workaround
@ 2022-01-24 18:56 John Snow
2022-01-24 18:56 ` [PATCH 1/2] Python: setuptools v60.0 workaround John Snow
2022-01-24 18:56 ` [PATCH 2/2] Revert "python: pin setuptools below v60.0.0" John Snow
0 siblings, 2 replies; 3+ messages in thread
From: John Snow @ 2022-01-24 18:56 UTC (permalink / raw)
To: qemu-devel; +Cc: Eduardo Habkost, John Snow, Beraldo Leal, Cleber Rosa
Long story short: Python 3.7/3.8 on Fedora with setuptools v60.0.0+
together create a bug that ultimately causes pylint to fail. See the
first commit message for more detail.
I sent out a hotfix last week to fix this behavior on our CI, but this
series offers a more comprehensive fix and reverts the hotfix.
John Snow (2):
Python: setuptools v60.0 workaround
Revert "python: pin setuptools below v60.0.0"
python/Makefile | 2 --
python/setup.cfg | 1 -
python/tests/iotests-pylint.sh | 3 ++-
python/tests/pylint.sh | 3 ++-
4 files changed, 4 insertions(+), 5 deletions(-)
--
2.31.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] Python: setuptools v60.0 workaround
2022-01-24 18:56 [PATCH 0/2] Python: setuptools v60+ workaround John Snow
@ 2022-01-24 18:56 ` John Snow
2022-01-24 18:56 ` [PATCH 2/2] Revert "python: pin setuptools below v60.0.0" John Snow
1 sibling, 0 replies; 3+ messages in thread
From: John Snow @ 2022-01-24 18:56 UTC (permalink / raw)
To: qemu-devel; +Cc: Eduardo Habkost, John Snow, Beraldo Leal, Cleber Rosa
Setuptools v60 and later include a bundled version of distutils, a
deprecated standard library scheduled for removal in future versions of
Python. Setuptools v60 is only possible to install for Python 3.7 and later.
Python has a distutils.sysconfig.get_python_lib() function that returns
'/usr/lib/pythonX.Y' on posix systems. RPM-based systems actually use
'/usr/lib64/pythonX.Y' instead, so Fedora patches stdlib distutils for
Python 3.7 and Python 3.8 to return the correct value.
Python 3.9 and later introduce a sys.platlibdir property, which returns
the correct value on RPM-based systems.
The change to a distutils package not provided by Fedora on Python 3.7
and 3.8 causes a regression in distutils.sysconfig.get_python_lib() that
ultimately causes false positives to be emitted by pylint, because it
can no longer find the system source libraries.
Many Python tools are fairly aggressive about updating setuptools
packages, and so even though this package is a fair bit newer than
Python 3.7/3.8, it's not entirely unreasonable for a given user to have
such a modern package with a fairly old Python interpreter.
We can force the loading of the platform-provided distutils when running
the pylint test; this is the least-invasive yet most comprehensive fix
until the dust settles upstream and the picture becomes more clear.
References: https://github.com/pypa/setuptools/pull/2896
https://github.com/PyCQA/pylint/issues/5704
https://github.com/pypa/distutils/issues/110
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/tests/iotests-pylint.sh | 3 ++-
python/tests/pylint.sh | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/python/tests/iotests-pylint.sh b/python/tests/iotests-pylint.sh
index 4cae03424b..33c5ae900a 100755
--- a/python/tests/iotests-pylint.sh
+++ b/python/tests/iotests-pylint.sh
@@ -1,4 +1,5 @@
#!/bin/sh -e
cd ../tests/qemu-iotests/
-python3 -m linters --pylint
+# See commit message for environment variable explainer.
+SETUPTOOLS_USE_DISTUTILS=stdlib python3 -m linters --pylint
diff --git a/python/tests/pylint.sh b/python/tests/pylint.sh
index 4b10b34db7..03d64705a1 100755
--- a/python/tests/pylint.sh
+++ b/python/tests/pylint.sh
@@ -1,2 +1,3 @@
#!/bin/sh -e
-python3 -m pylint qemu/
+# See commit message for environment variable explainer.
+SETUPTOOLS_USE_DISTUTILS=stdlib python3 -m pylint qemu/
--
2.31.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] Revert "python: pin setuptools below v60.0.0"
2022-01-24 18:56 [PATCH 0/2] Python: setuptools v60+ workaround John Snow
2022-01-24 18:56 ` [PATCH 1/2] Python: setuptools v60.0 workaround John Snow
@ 2022-01-24 18:56 ` John Snow
1 sibling, 0 replies; 3+ messages in thread
From: John Snow @ 2022-01-24 18:56 UTC (permalink / raw)
To: qemu-devel; +Cc: Eduardo Habkost, John Snow, Beraldo Leal, Cleber Rosa
This reverts commit 1e4d8b31be35e54b6429fea54f5ecaa0083f91e7.
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/Makefile | 2 --
python/setup.cfg | 1 -
2 files changed, 3 deletions(-)
diff --git a/python/Makefile b/python/Makefile
index 949c472624..3334311362 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -68,8 +68,6 @@ $(QEMU_VENV_DIR) $(QEMU_VENV_DIR)/bin/activate: setup.cfg
echo "ACTIVATE $(QEMU_VENV_DIR)"; \
. $(QEMU_VENV_DIR)/bin/activate; \
echo "INSTALL qemu[devel] $(QEMU_VENV_DIR)"; \
- pip install --disable-pip-version-check \
- "setuptools<60.0.0" 1>/dev/null; \
make develop 1>/dev/null; \
)
@touch $(QEMU_VENV_DIR)
diff --git a/python/setup.cfg b/python/setup.cfg
index 3fb18f845d..168a79c867 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -163,7 +163,6 @@ deps =
.[devel]
.[fuse] # Workaround to trigger tox venv rebuild
.[tui] # Workaround to trigger tox venv rebuild
- setuptools < 60 # Workaround, please see commit msg.
commands =
make check
--
2.31.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-01-24 19:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-24 18:56 [PATCH 0/2] Python: setuptools v60+ workaround John Snow
2022-01-24 18:56 ` [PATCH 1/2] Python: setuptools v60.0 workaround John Snow
2022-01-24 18:56 ` [PATCH 2/2] Revert "python: pin setuptools below v60.0.0" John Snow
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).