Uh oh!
There was an error while loading. Please reload this page.
Remove pyproject_old.toml - #65
Merged
Merged
Conversation
A backup of the poetry configuration, kept when the project moved to uv in 340b54c (2025-11-15). It is byte-identical to 340b54c^:pyproject.toml, so git already holds a complete copy and the working-tree duplicate adds no recoverability. It does add noise. Searches for dependencies or configuration hit a nine-month-old snapshot alongside the live file -- the stale jupyter-contrib-nbextensions pin in it turned up while tracking down an unrelated docs failure, and had to be ruled out before the real cause was clear. Nothing references the file; the build, lint, and lock checks are unaffected.
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
A backup of the poetry configuration, kept when the project moved to uv in
340b54c("uv env and format", 2025-11-15).It is redundant
The file is byte-identical to
340b54c^:pyproject.toml:Git already holds a complete copy. Recovering it is
git show 340b54c^:pyproject.toml. The working-tree duplicate adds nothing.It is also actively misleading
It surfaces in searches for dependencies and configuration, next to the live file. That is not hypothetical — while tracking down why the docs build broke under notebook 7 (#44), grepping for
jupyter-contrib-nbextensionshitpyproject_old.toml:115as well as the real pin, and the stale entry had to be ruled out before the actual cause was clear. Anyone grepping this repo for a dependency gets a nine-month-old snapshot mixed into the results.Verification
Nothing in the repo references it.
uv buildproduces the expected wheel and sdist,ruff checkis clean, anduv lock --checkis consistent. A sweep for other leftovers of this kind (*_old,*.bak,*.orig,*copy*,*backup*) found none.