From 30d17a144d704abec433c72215a45ffa00b6d2fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Sun, 15 Dec 2024 12:23:52 -0600 Subject: [PATCH] Fix `package_version` example in readme to use `https://pypi.org/prokect///` instead of the `https://pypi.org/p///` alias (#158) Fix `package_version` example in readme to use `https://pypi.org/project///` instead of the `https://pypi.org/p///` alias Turns out this doesn't work https://pypi.org/p/structlog/24.4.0/ but this does https://pypi.org/project/structlog/24.4.0/ --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d20a70..630dcb2 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ While *build-and-inspect-python-package* will build a wheel for you by default, needs: baipp environment: name: pypi - url: https://pypi.org/p/structlog/${{ needs.baipp.outputs.package-version }} + url: https://pypi.org/project/structlog/${{ needs.baipp.outputs.package-version }} ``` ### Artifacts