You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The distutils module has been deprecated since python 3.10 and leads to deprecation warnings during the test of gnome-gmail. Which leads to failed tests (due to output/deprecation warnings on stderr) in Ubuntu 22.04. PEP 632 suggests using the setuptools module instead: https://www.python.org/dev/peps/pep-0632/#migration-advice
# python3 setup.py test --pytest-args --ignore=test/test_setup.py
/tmp/autopkgtest.c1v6yk/build.RDc/src/setup.py:3: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
from distutils.core import setup, Command
running test
[...]
The text was updated successfully, but these errors were encountered:
The distutils module has been deprecated since python 3.10 and leads to deprecation warnings during the test of gnome-gmail. Which leads to failed tests (due to output/deprecation warnings on stderr) in Ubuntu 22.04. PEP 632 suggests using the
setuptools
module instead: https://www.python.org/dev/peps/pep-0632/#migration-adviceThe text was updated successfully, but these errors were encountered: