Why do I need long_description_content_type='text/markdown'
?
#209
-
Hello there! I replaced login/password by trusted publishing on the repo I maintain.
The actual workflow is accessible : here We did not use the Thanks for your time! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That's what N.B. Twine validates the metadata of the resulting package distributions, that can be created by different build backends, in an agnostic manner. In your case, it's |
Beta Was this translation helpful? Give feedback.
That's what
twine check --strict
requires. Some of the reported problems are warnings, others may be errors that would cause PyPI to reject uploads.In this action, you can disable the metadata validation and live dangerously. See the readme.
N.B. Twine validates the metadata of the resulting package distributions, that can be created by different build backends, in an agnostic manner. In your case, it's
setuptools
, so take it up with them how the metadata is created. This action doesn't build the dists.