Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

specifications: add build-details.json (PEP 739) #1807

Merged
merged 8 commits into from
Apr 2, 2025

Conversation

FFY00
Copy link
Member

@FFY00 FFY00 commented Feb 5, 2025

@FFY00 FFY00 force-pushed the add-pep739 branch 2 times, most recently from 38f0e12 to 43e7116 Compare February 5, 2025 16:47
Signed-off-by: Filipe Laíns <lains@riseup.net>
@FFY00
Copy link
Member Author

FFY00 commented Feb 5, 2025

@CAM-Gerlach, could you review this? Thanks!

Co-authored-by: Zanie Blue <contact@zanie.dev>
source/conf.py Outdated
@@ -128,6 +129,7 @@

linkcheck_ignore = [
"http://localhost:\\d+",
"https://packaging.python.org/en/latest/specifications/schemas/*",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, shouldn't this be a regex?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because the URL doesn't exist yet, so the CI will always fail.

- :ref:`build-details-v1.0`

* - Schema
- https://packaging.python.org/en/latest/specifications/schemas/python-build-info-v1.0.schema.json
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can this be a relative link?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd very strongly prefer to have it show the full canonical URL that can be used as the schema identifier.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm wondering if it'd be possible to migrate to using something like the :download: role.. Any ideas?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we be storing this under _static/ instead?
Additionally, it should be possible to do something like

Suggested change
- https://packaging.python.org/en/latest/specifications/schemas/python-build-info-v1.0.schema.json
- `https://packaging.python.org/en/latest/_static/schemas/python-build-info-v1.0.schema.json <_static/schemas/python-build-info-v1.0.schema.json>`_

This needs testing. But if it works, we'd be able to get rid of the linkignore thing.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we be storing this under _static/ instead?

I don't think having _static in the canonical ID URL looks good. I added the schemas directory to html_extra_path.

Additionally, it should be possible to do something like

This needs testing. But if it works, we'd be able to get rid of the linkignore thing.

I tried using both a normal link like in that snippet, and the download role, neither fixed the link check.

FFY00 and others added 3 commits February 27, 2025 18:01
Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua>
Signed-off-by: Filipe Laíns <lains@riseup.net>
@pradyunsg
Copy link
Member

With great power, comes an annoying amount of responsibility. Yield it carefully @FFY00, whom I've added to the packaging.python.org editors list.

@FFY00 FFY00 requested a review from webknjaz February 27, 2025 18:58
@FFY00
Copy link
Member Author

FFY00 commented Mar 28, 2025

@webknjaz can you have a look again, so that we can unblock the PR?

FFY00 added 3 commits March 30, 2025 12:52
Signed-off-by: Filipe Laíns <lains@riseup.net>
Signed-off-by: Filipe Laíns <lains@riseup.net>
Signed-off-by: Filipe Laíns <lains@riseup.net>
@@ -128,6 +133,7 @@

linkcheck_ignore = [
"http://localhost:\\d+",
"https://packaging.python.org/en/latest/specifications/schemas/.*",
"https://test.pypi.org/project/example-package-YOUR-USERNAME-HERE",
"https://pypi.org/manage/*",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I worked out why these trailing globs seem to work: linkcheck_ignore does a prefix match on the given regexes, so finishing with /* (zero-or-more trailing slashes) is essentially identical to omitting that part of the pattern.

To force a whole string match instead of a prefix match you have to specifically terminate the pattern with $

@ncoghlan ncoghlan enabled auto-merge April 2, 2025 14:34
@ncoghlan
Copy link
Member

ncoghlan commented Apr 2, 2025

Looks good to me too, so I went ahead and marked this one as ready for merging.

@webknjaz I think your link cleanup requests are reasonable, but also easier to resolve once we've published a version that includes the schema file.

- :ref:`build-details-v1.0`

* - Schema
- :download:`https://packaging.python.org/en/latest/specifications/schemas/build-details-v1.0.schema.json <../schemas/build-details-v1.0.schema.json>`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like the actual generated href isn't preserved, as :download: copies things into another location.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right, thanks for noticing, we should go back to a normal link then.

@@ -82,6 +83,10 @@
# https://plausible.io/packaging.python.org
html_js_files.extend(_metrics_js_files)

html_extra_path = [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this needed? I don't think it works the way you assume...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, sorry!

@webknjaz
Copy link
Member

webknjaz commented Apr 2, 2025

@ncoghlan we can unblock and deal with the consequences later, but this is broken, FWIW.

@ncoghlan ncoghlan added this pull request to the merge queue Apr 2, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to Branch Protection failures Apr 2, 2025
You're not authorized to push to this branch. Visit "About protected branches" for more information.
@webknjaz webknjaz enabled auto-merge April 2, 2025 17:37
@webknjaz webknjaz added this pull request to the merge queue Apr 2, 2025
Merged via the queue into pypa:main with commit ee8c2f3 Apr 2, 2025
7 checks passed
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants