-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Do not add checksums to css files if building using the htmlhelp builder #11894
Do not add checksums to css files if building using the htmlhelp builder #11894
Conversation
# Conflicts: # sphinx/builders/html/__init__.py
Please could you add an entry to CHANGES? |
This looks like it affects Sphinx 7.1.0 onwards currently, and I do think that this would solve the problem. However: it's not great to introduce builder-specific fixes in Sphinx itself, and I'd suggest that maybe adding a That said: that would require some release co-ordination (addition + release in Sphinx, then a corresponding usage + baseline Sphinx dependency bump + release of |
Ok: now I understand that as of recently, many of the I'll try to learn a bit more about the reasoning behind the dependency versioning change (#11567); to my mind, the ability to list supported Sphinx versions from each extensions seems quite important. |
I think my previous comments here were too hasty and cautious about this - I now think it's a reasonable solution to a genuine problem, and that unless another approach arrives (that I could and should offer myself if I find time), on balance it's better to fix the existing issue. My apologies for delay caused. |
I added an entry to the changes. |
Thank you! I'll merge it when the tests are done |
Thank you! |
Subject: The windows help compiler requires that css links don't have a query component. This PR disables the checksum for css files if the htmlhelp builder is used.
Feature or Bugfix
Relates