claude: remove old notebooks and examples directories#4769
Merged
Liam-DeVoe merged 2 commits intoJun 18, 2026
Conversation
Zac-HD
approved these changes
Jun 18, 2026
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.
Claude-written description
Removes two stale directories:
notebooks/— contained a single old file (Designing a better simplifier.ipynb) that is no longer relevant. Nothing referenced it.hypothesis/examples/— demo example tests plus theexample_hypothesis_entrypointpackage. This was wired to a[testenv:examples3]tox env and acheck_examples3tooling task, butcheck_examples3was never in the CI task matrix (.github/workflows/main.yml) — it was orphaned and only manually runnable. Removed the directory along with the now-danglingexamples3tox env andcheck_examples3task.Note: deleting
hypothesis/examples/removes the only test that exercised Hypothesis's"hypothesis"setuptools entry-point loading path (src/hypothesis/entry_points.py, whose loop is already# pragma: no cover). The feature remains documented and supported; since the test was not running in CI, this does not regress CI coverage, but the entry-point mechanism now has no test guarding a future refactor. No replacement test was added per the change scope.