You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a relative base URL base-url = ".", the generated links from index.html to ./package/ are fine, but wheel-links within a subfolder like ./package/index.html still include the subfolder ./package/package-xyz.whl within the link, thus incorrectly referring to locations like package/package/package-xyz.whl.
Description
When using a relative base URL
base-url = "."
, the generated links fromindex.html
to./package/
are fine, but wheel-links within a subfolder like./package/index.html
still include the subfolder./package/package-xyz.whl
within the link, thus incorrectly referring to locations likepackage/package/package-xyz.whl
.Steps to Reproduce
Run
simple503 .
withsimple503.toml
:Generated links to wheel files are off by one subfolder.
Actual result:
Generated links currently resolve to
<base>/package/package/package-xyz.whl
.Expected result:
Generated links should resolve to
<base>/package/package-xyz.whl
.The text was updated successfully, but these errors were encountered: