Fix sdist include to ship CHANGES.md after changelog rename#3685
Open
kobihikri wants to merge 1 commit into
Open
Fix sdist include to ship CHANGES.md after changelog rename#3685kobihikri wants to merge 1 commit into
kobihikri wants to merge 1 commit into
Conversation
Author
|
Hi @davidism Why was the PR closed? ... I've reproduced the issue ... |
Member
|
This appears to be AI generated. Did you use AI to generate this PR? |
Author
|
No … what appears AI generated in it, sir?
I’m a person here
…On Sun, 12 Jul 2026 at 20:03 David Lord ***@***.***> wrote:
*davidism* left a comment (pallets/click#3685)
<#3685 (comment)>
This appears to be AI generated. Did you use AI to generate this PR?
—
Reply to this email directly, view it on GitHub
<#3685?email_source=notifications&email_token=ABB2WAPXNFRNGFFWZAHIFI35EPAFXA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTIOJVGIYDEMJUGQ42M4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KYZTPN52GK4S7MNWGSY3L#issuecomment-4952021449>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABB2WAJTWPDN5UQLLVBQNC35EPAFXAVCNFSNUABEKJSXA33TNF2G64TZHMYTSMJQGM3DSMR3JFZXG5LFHM2DQNRXHEZDKNJYGSQXMAQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Author
|
@davidism |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#3559 renamed
CHANGES.rsttoCHANGES.md, but the[tool.flit.sdist]include list inpyproject.tomlstill references the old name. Flit silently skips include patterns that match nothing, so sdists no longer contain the changelog, and building the docs from an sdist fails becausedocs/changes.mdincludes../CHANGES.md.Verified after the change:
uv build --sdistproduces a tarball containingCHANGES.md, andsphinx-build -E -Wfrom the extracted sdist passes again.