Remove deprecated Python Reconfigurable from docs#5083
Open
shannonbradshaw wants to merge 1 commit into
Open
Conversation
The Python SDK deprecated the Reconfigurable class in viam-python-sdk#1167. Modules now always rebuild on reconfigure (stop, remove, re-add) instead of calling reconfigure() in-place. - module-reference.md: Remove "In-place reconfigure" row from the behavior table since it is no longer supported in any language. - pet-photographer tutorial: Remove Reconfigurable import and class inheritance. - custom-base-dog tutorial: Remove Reconfigurable from class inheritance. https://claude.ai/code/session_01WLL6HXYtyzY1BCYYNtTaH7
✅ Deploy Preview for viam-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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.

Source changes
Reconfigurableclass from Python SDK. The class is now deprecated with aDeprecationWarning. Modules always rebuild on reconfigure (stop → remove → re-add) instead of callingreconfigure()in-place.Docs changes
docs/build-modules/module-reference.md: Remove the "In-place reconfigure" row from the default behavior table. Python no longer supports in-place reconfiguration — both Go and Python now always rebuild on config change.docs/tutorials/configure/pet-photographer.md: Removefrom viam.module.types import Reconfigurableimport andReconfigurablefrom class inheritance. Thereconfigure()method remains as a regular helper called from the constructor.docs/tutorials/custom/custom-base-dog.md: RemoveReconfigurablefromrobotdogclass inheritance. Same pattern —reconfigure()stays as a regular method.How I found these
search-patterns.yamlentry forResource.ReconfigureReconfigurable,viam.module.types,reconfigure,in-place reconfiguracross all docs. Found 3 affected files.Generated by daily docs change agent
Generated by Claude Code