fix: replace deprecated pypi.python.org and dead relishapp.com URLs in README#812
Merged
youtux merged 1 commit intoJun 9, 2026
Merged
Conversation
- Update 4 pypi.python.org links to canonical pypi.org/project/ URLs (pypi.python.org has long redirected to pypi.org) - Replace dead relishapp.com/cucumber JSON format link with the official cucumber-json-formatter GitHub repository https://claude.ai/code/session_015JnVMb7zKNGhGgUhtXV2ZS
youtux
approved these changes
Jun 9, 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.
What
Fix 5 outdated/broken URLs in
README.rst:https://pypi.python.org/pypi/pytest-bdd→https://pypi.org/project/pytest-bddhttps://pypi.python.org/pypi/behave→https://pypi.org/project/behavehttp://pypi.python.org/pypi/parse→https://pypi.org/project/parsehttp://pypi.python.org/pypi/parse_type→https://pypi.org/project/parse-typehttps://www.relishapp.com/cucumber/cucumber/docs/json-output-formatter→https://github.com/cucumber/cucumber-json-formatterWhy
pypi.python.orgdomain has been deprecated for years;pypi.orgis the canonical PyPI address. All the old links trigger multiple redirects before landing onpypi.org/project/<name>/.relishapp.comis completely dead (returns 403). The canonical Cucumber JSON formatter reference is now the officialcucumber/cucumber-json-formatterrepository.How verified
Confirmed each new URL returns HTTP 200 directly with no redirect chain.