-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Ensure latest version source #4392
Conversation
Should be good to merge 👍 |
Thanks for the PR. I'm discovering more and more that the ecosystem doesn't seem to be ready for the switch, e.g. PyPI stats can't resolve author, license, etc. anymore: https://pypistats.org/packages/mkdocs-material I'm not sure this is ready for primetime. |
Hmm, cc @hugovk |
https://pypi.org/pypi/mkdocs-material/json contains: {
"info": {
"author": "",
...
"license": "",
... I see https://github.com/squidfunk/mkdocs-material/blob/master/pyproject.toml also contains no Compare: license = {text = "MIT"}
authors = [{name = "Hugo van Kemenade"}] And they can be see at:
{
"info": {
"author": "Hugo van Kemenade",
...
"license": "MIT",
... Should they be added here? |
Both show correctly here under Meta tab https://pypi.org/project/mkdocs-material/ |
Looks like pypistats.org is just using I suggest opening an issue at https://github.com/crflynn/pypistats.org/issues (My https://github.com/hugovk/pypistats is a Python client using the pypistats.org API; I'm not a maintainer of pypistats.org.) |
I'm considering this ready for merge then. PyPI stats is not critical, but it would be great if this could be solved and reported. I'm not very familiar with the Python packaging ecosystem, so I would be thankful if one of you could take this on. |
So, as a temporary measure, couldn't we just add back all the information that was present in the Lines 40 to 78 in cccc214
|
That wouldn't fix it, here's the known issue pypi/warehouse#9400 |
Address #4341 (comment)