diff --git a/src/npe2/_inspection/_fetch.py b/src/npe2/_inspection/_fetch.py index d6577b96..a0d259b3 100644 --- a/src/npe2/_inspection/_fetch.py +++ b/src/npe2/_inspection/_fetch.py @@ -408,7 +408,7 @@ def get_pypi_plugins() -> Dict[str, str]: @lru_cache def get_hub_plugins() -> Dict[str, str]: """Return {name: latest_version} for all plugins on the hub.""" - with request.urlopen("https://api.napari-hub.org/plugins") as r: + with request.urlopen("https://api.napari-hub.org/plugins/index/all") as r: return json.load(r)