Merged
Conversation
vinay553
approved these changes
Mar 6, 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.
In previous commits, I removed the deprecated
pkg_resourcespackage and replaced it withimportlib-metadata. pkg_resources package was causing 2 main problems:UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30.Additionally, this update resolves ~79 errors/warnings in sphinx auto doc build errors.
This PR updates the config to match the new tag version so I can release an updated version of sdk.
Should solve this ci/cd build error when publishing a new tag:
Greptile Summary
This PR bumps the package version from
0.17.12to0.17.13inpyproject.tomland adds the correspondingCHANGELOG.mdentry. The actual code changes (replacing deprecatedpkg_resourceswithimportlib-metadataand fixing ~79 Sphinx doc build errors) were introduced in prior commits; this PR simply tags and publishes that work as a new release.pyproject.toml: Version updated from0.17.12→0.17.13CHANGELOG.md: New entry added under[0.17.13]documenting thepkg_resourcesdeprecation fix and Sphinx doc build improvementsConfidence Score: 5/5
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[Prior commits\npkg_resources → importlib-metadata\nSphinx doc fixes] --> B[This PR\nVersion bump 0.17.12 → 0.17.13] B --> C[pyproject.toml\nversion = 0.17.13] B --> D[CHANGELOG.md\nv0.17.13 entry added] C --> E[Release v0.17.13\npublished to PyPI] D --> ELast reviewed commit: e374447