diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 10:29:58 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 10:29:58 -0400 |
commit | 41eb56a04a808b6fdf1a18a93466f0586d161820 (patch) | |
tree | 7dafe6cef56b7045e905ef2a805fa3a8a9b9125a /src/delivery.c | |
parent | c3585a2ef4e5a8624e3d0d3c9ecdb776993ee567 (diff) | |
download | stasis-41eb56a04a808b6fdf1a18a93466f0586d161820.tar.gz |
Rename python_package_exists to pip_index_provides
* Document the function prototype
* Add missing comments in micromamba structure
Diffstat (limited to 'src/delivery.c')
-rw-r--r-- | src/delivery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delivery.c b/src/delivery.c index 2b69ec3..524dd0a 100644 --- a/src/delivery.c +++ b/src/delivery.c @@ -1504,7 +1504,7 @@ void delivery_defer_packages(struct Delivery *ctx, int type) { } } - if (DEFER_PIP == type && python_package_exists(PYPI_INDEX_DEFAULT, name, version)) { + if (DEFER_PIP == type && pip_index_provides(PYPI_INDEX_DEFAULT, name, version)) { fprintf(stderr, "(%s present on index %s): ", version, PYPI_INDEX_DEFAULT); ignore_pkg = 0; } else { |