docs: fix stale dagworks-inc/burr URLs and bracketed-extras installs#777
Open
elijahbenizzy wants to merge 1 commit into
Open
docs: fix stale dagworks-inc/burr URLs and bracketed-extras installs#777elijahbenizzy wants to merge 1 commit into
elijahbenizzy wants to merge 1 commit into
Conversation
Two follow-up cleanups for the Apache rename: * 14 example READMEs + 2 notebooks linked `dagworks-inc/burr` Colab URLs (or a commented git URL in the s3 Dockerfile) that 404 since the repo moved to `apache/burr`. * 11 install lines escaped PR #772's regex (the JSON-escaped `\"burr[...]` form in notebook cells, and a `poetry add` form) and still said `pip install "burr[extras]"`. PyPI's `burr` is an unrelated placeholder, so these instructions don't work. Pure mechanical sweep. No code or behavior changes.
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.
Summary
Two follow-up cleanups the original rename PR #772 missed.
1. Stale
dagworks-inc/burrURLs (17 swaps)Mostly Colab links in example READMEs, plus a commented git URL in
burr/tracking/server/s3/deployment/Dockerfile. These all 404 now that the repo lives atapache/burr. Replaced (case-insensitive) withapache/burr.2. Bracketed-extras install commands the regex missed (11 swaps)
PR #772 caught
pip install burr/pip install "burr"cleanly, but missedpip install "burr[extras]"in JSON-escaped notebook cells (\"burr[start]\") and inpoetry add ... "burr[...]". Fixed in 9 notebooks, the Dockerfile, anddocs/getting_started/install.rst:41.Scope guardrails
burr[rename only fires on lines containingpip installorpoetry add— won't touch real Python code likestate["foo"]orburr.coreimports.dagworks-inc/burrrename only matches that exact substring (case-insensitive).Test plan