This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: add a new command called "check" into Distutils
Type: enhancement Stage:
Components: Versions: Python 3.1, Python 2.7
process
Status: closed Resolution:
Dependencies: 6041 Superseder:
Assigned To: tarek Nosy List: tarek
Priority: normal Keywords:

Created on 2009-04-09 23:15 by tarek, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg85835 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2009-04-09 23:15
Right now, both register and sdist commands are implementing a
check_metadata function to check that the metadata are complete enough.

check will refactor this and also add a test to validate that the 
long_description is/is not reST compliant (if asked *and* if docutils is
present)

of course distutils will not introduce a hard dependency on docutils and
both register and sdist wil continue to work the same way (but use check
underneath)
msg85864 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2009-04-11 15:17
'check' added in r71473 and r71473

Now working on sdist and register so they use it.
msg87903 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2009-05-16 16:49
closing (created a new ticket #6041 for sdist and register inclusion)
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49982
2009-05-16 17:01:06tareklinkissue6041 dependencies
2009-05-16 16:49:50tareksetdependencies: + change sdist and register command so they use check
2009-05-16 16:49:31tareksetstatus: open -> closed

messages: + msg87903
2009-04-11 15:17:46tareksetmessages: + msg85864
2009-04-09 23:15:35tarekcreate