-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validate README format #769
Comments
It seems that readme_renderer updated their instructions to use |
Yep, |
WRT the README, in a setup.py file it is often added to the long_description with an associated content type, but poetry is not adding the content type, e.g.
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I'm still interested in this! |
|
Turns out Poetry doesn't set the content type for the long description. python-poetry/poetry#769
Turns out Poetry doesn't set the content type for the long description. python-poetry/poetry#769
I am getting this error while poetry publish after README.rst file is added
Update: My error got resolved when I replaced README**.rst** file to README**.md** |
It seems that poetry doesn't validate the README markup. Furthermore, because no setup.py file is present in a poetry project, I cannot use readme_renderer (which is usually invoke via
python setup.py check -r -s
).It would be nice to have a way to invoke such setup check routines, or better yet, have poetry validate the README itself.
Related: #761
A temporary workaround is to use
python -m readme_renderer README.rst >/dev/null
to check.The text was updated successfully, but these errors were encountered: