fix(pypi): correct broken project links and reported version#3
Merged
Merged
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the project version to 0.1.1 and addresses several metadata and linking issues. Key changes include correcting the GitHub repository URLs in pyproject.toml, converting relative links in the README.md to absolute URLs for better compatibility with PyPI, and fixing the version resolution logic to use the correct distribution name (ootle-py) instead of the import name. Additionally, a regression test was added to ensure the version correctly matches the installed distribution metadata. I have no feedback to provide.
sdbondi
approved these changes
May 25, 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.
Description
Fixes the broken links on our PyPI page and corrects the version number the package reports about itself. Ships as release 0.1.1.
Motivation and Context
After the first publish, the PyPI page pointed to a repository address that doesn't exist, and several links in the README led nowhere. The package also reported the wrong version for anyone who installed it. These make a poor first impression and confuse users.
How Has This Been Tested?
Ran the full project checks (all passing), built the package, and validated it with the same tool our release process uses. Confirmed the links now point to the correct place and the package reports the right version.
What process can a PR reviewer use to test or verify this change?
github.com/tari-project/ootle-pyand open without a 404.0.1.1(e.g.ootle --version).Breaking Changes