Skip to content

Commit

Permalink
Fix broken path in index
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanjmcdougall committed Feb 27, 2025
1 parent 0a67043 commit a3712a0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<!DOCTYPE html>
<html>
<body>
<a href="/basemap/">basemap</a>
<a href="/cartopy/">cartopy</a>
<a href="/cftime/">cftime</a>
<a href="/fiona/">fiona</a>
<a href="/gdal/">gdal</a>
<a href="/netcdf4/">netcdf4</a>
<a href="/pygeos/">pygeos</a>
<a href="/pyproj/">pyproj</a>
<a href="/rasterio/">rasterio</a>
<a href="/rtree/">rtree</a>
<a href="/shapely/">shapely</a> </body>
<a href="basemap/">basemap</a>
<a href="cartopy/">cartopy</a>
<a href="cftime/">cftime</a>
<a href="fiona/">fiona</a>
<a href="gdal/">gdal</a>
<a href="netcdf4/">netcdf4</a>
<a href="pygeos/">pygeos</a>
<a href="pyproj/">pyproj</a>
<a href="rasterio/">rasterio</a>
<a href="rtree/">rtree</a>
<a href="shapely/">shapely</a> </body>
</html>
2 changes: 1 addition & 1 deletion tests/test_up_to_date.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def test_index_up_to_date(tmp_path: Path) -> None:
"""
+ "\n".join(
[
f""" <a href="/{whl_name}/">{whl_name}</a>"""
f""" <a href="{whl_name}/">{whl_name}</a>"""
for whl_name in package_names
]
)
Expand Down

0 comments on commit a3712a0

Please sign in to comment.