aboutsummaryrefslogtreecommitdiff
path: root/programming
diff options
context:
space:
mode:
authorAlex Corcoles <alex@pdp7.net>2024-03-01 20:44:52 +0100
committerAlex Corcoles <alex@corcoles.net>2024-03-01 20:27:52 +0000
commitc65eecd5d79dcb340d7154309b8dcf60f388f16f (patch)
treec4619ff31d5c2264357700ecb823139f7caf9656 /programming
parent184be5d489dc312558fc053c5753e41469440ad8 (diff)
Clarify binary dependencies
Diffstat (limited to 'programming')
-rw-r--r--programming/python/project_setup.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/programming/python/project_setup.md b/programming/python/project_setup.md
index 7c736c94..2d66db82 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.