Target check-distutils in the Makefile had not been changed during the pyproject.toml migration (#2523):
|
check-distutils: |
|
python setup.py check --restructuredtext --strict |
It is broken:
$ make check-distutils
python setup.py check --restructuredtext --strict
running check
warning: check: missing required meta-data: name, version, url
warning: check: missing meta-data: either (author and author_email) or (maintainer and maintainer_email) must be supplied
error: Please correct your package.
Makefile:51: recipe for target 'check-distutils' failed
make: *** [check-distutils] Error 1
$
We probably want to move away from setup.py check anyway. The alternative appears to be twine check, at least according to Why you shouldn't invoke setup.py directly.
Target
check-distutilsin theMakefilehad not been changed during thepyproject.tomlmigration (#2523):codespell/Makefile
Lines 50 to 51 in 1302d79
It is broken:
We probably want to move away from
setup.py checkanyway. The alternative appears to betwine check, at least according to Why you shouldn't invoke setup.py directly.