From: Alex Corcoles Date: Fri, 1 Mar 2024 19:44:52 +0000 (+0100) Subject: Clarify binary dependencies X-Git-Tag: 20241020-emacs~266 X-Git-Url: https://xn--ix-yja.es/gitweb/?a=commitdiff_plain;h=c65eecd5d79dcb340d7154309b8dcf60f388f16f;p=alex.git Clarify binary dependencies --- diff --git a/programming/python/project_setup.md b/programming/python/project_setup.md index 7c736c9..2d66db8 100644 --- a/programming/python/project_setup.md +++ b/programming/python/project_setup.md @@ -112,4 +112,4 @@ Consider the use of Sphinx to render documentation and publish it to the web if If your code can be executed from a command line, consider documenting installation via `pipx`. -If your code has significant binary dependencies, consider publishing a Docker image. Design your Docker images so rebuilding the image on most changes is fast. +If your code has dependencies that are not trivial to install (such as Pandas), consider publishing a Docker image or using dependencies that are simpler to install. Design your Docker images so rebuilding the image on most changes is fast.