add support for pip

This commit is contained in:
Josh Rogers
2026-05-27 15:54:52 -04:00
parent 6cd293481c
commit 64fe90cbdd
+8
View File
@@ -82,6 +82,14 @@ def _get_pip_cleanup_lines(
echo "Dependency resolution check failed. One or more installed packages are incompatible."; \
echo "Pin compatible versions in your dependencies and try again."; \
exit 1 \
)"""
)
elif pip_installer == "pip":
commands.append(
"""RUN python -m pip check || ( \
echo "Dependency resolution check failed. One or more installed packages are incompatible."; \
echo "Pin compatible versions in your dependencies and try again."; \
exit 1 \
)"""
)
commands.append(