docs: switch install to extras syntax for tracebloc_package 0.6.33#4
Draft
LukasWodka wants to merge 1 commit intomainfrom
Draft
docs: switch install to extras syntax for tracebloc_package 0.6.33#4LukasWodka wants to merge 1 commit intomainfrom
LukasWodka wants to merge 1 commit intomainfrom
Conversation
Aligns with the optional-dependency-groups change shipping in tracebloc-py-package 0.6.33. Default install no longer bundles every ML framework — users pick the extra that matches their setup. - README.md: 3-line extras table in the local-setup section. - notebooks/traceblocTrainingGuide.ipynb cell 3: switch install cmd to [pytorch] as the most common setup; comment points at [tensorflow] and [all]. DO NOT MERGE until tracebloc_package 0.6.33 is live on real PyPI. Currently 0.6.33 is only on TestPyPI. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3 tasks
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.
tracebloc_package 0.6.33ships to PyPICurrently
0.6.33is only on TestPyPI. If this PR merges before the prod release,pip install "tracebloc_package[pytorch]>=0.6.33"will fail with "Could not find a version that satisfies the requirement".Summary
Updates the start-training install instructions to use the new optional dependency groups shipping in
tracebloc_package 0.6.33. Default install no longer bundles every ML framework — users pick the extra that matches their setup.Changes
README.mdpip install tracebloc_package>=0.6.32with 3-line extras table (pytorch / tensorflow / all)notebooks/traceblocTrainingGuide.ipynb(cell 3)!pip install tracebloc_package>=0.6.32 -q→!pip install "tracebloc_package[pytorch]>=0.6.33" -qwith comment pointing at TensorFlow and [all]Why pytorch as default
pip install "tracebloc_package[pytorch]"on Colab adds only the SDK itself + a few small depsMerge coordination
Same-day merge required with:
Note about the diff
The NotebookEdit tool re-serialized the
.ipynb, which expanded unicode escapes (\u2705→✅) throughout. Those lines are visual no-ops — only cell 3 has functional changes.Test plan
🤖 Generated with Claude Code