Skip to content

Commit 30d17a1

Browse files
Fix package_version example in readme to use https://pypi.org/prokect/<package>/<version>/ instead of the https://pypi.org/p/<package>/<version>/ alias (#158)
Fix `package_version` example in readme to use `https://pypi.org/project/<package>/<version>/` instead of the `https://pypi.org/p/<package>/<version>/` 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/
1 parent 00971cc commit 30d17a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ While *build-and-inspect-python-package* will build a wheel for you by default,
173173
needs: baipp
174174
environment:
175175
name: pypi
176-
url: https://pypi.org/p/structlog/${{ needs.baipp.outputs.package-version }}
176+
url: https://pypi.org/project/structlog/${{ needs.baipp.outputs.package-version }}
177177
```
178178

179179
### Artifacts

0 commit comments

Comments
 (0)