Apparently it's caused by multiple instances of the following warning:
/home/mgorny/git/cpython/Lib/distutils/command/check.py:128: DeprecationWarning: The frontend.OptionParser class will be replaced by a subclass of argparse.ArgumentParser in Docutils 0.21 or later.
settings = frontend.OptionParser(components=(Parser,)).get_default_values()
/home/mgorny/git/cpython/Lib/optparse.py:1000: DeprecationWarning: The frontend.Option class will be removed in Docutils 0.21 or later.
option = self.option_class(*args, **kwargs)
To reproduce
Install docutils-0.19 using the system package manager.
./configure --prefix=/usr
make -j$(nproc)
make test
Your environment
CPython versions tested on: 3.11.0
Operating system and architecture: Gentoo/amd64
The text was updated successfully, but these errors were encountered:
mgorny
changed the title
tset_distutils: test_check_metadata_deprecated fails if docutils-0.19 are installed
test_distutils: test_check_metadata_deprecated fails if docutils-0.19 are installed
Oct 25, 2022
mgorny commentedOct 25, 2022
Bug report
If
docutils-0.19are installed system-wide while running CPython's test suite, the following test fails:Apparently it's caused by multiple instances of the following warning:
To reproduce
docutils-0.19using the system package manager../configure --prefix=/usrmake -j$(nproc)make testYour environment
The text was updated successfully, but these errors were encountered: