From 8933a26cd048fe33465999cd7a9d0dc0bb24f6b3 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 22 May 2023 08:30:49 +0200 Subject: [PATCH] Fix poetry img --- .../poetry-python-dependencies-management/index.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/content/posts/poetry-python-dependencies-management/index.md b/content/posts/poetry-python-dependencies-management/index.md index e249bff..2a1c94c 100644 --- a/content/posts/poetry-python-dependencies-management/index.md +++ b/content/posts/poetry-python-dependencies-management/index.md @@ -4,6 +4,15 @@ tags: ['ITSF', 'dependencies', 'poetry', 'python'] date: 2020-12-30T20:44:05.549630+00:00 aliases: ["/poetry-python-dependencies-management"] canonicalURL: "/poetry-python-dependencies-management" +custom_css: >- + .svg-container { + float: right; + } + .svg-container img { + max-height: 200px; + max-width: 200px; + width: 200px; + } --- At [ITSF](https://itsf.io), teams using the same languages/frameworks regularly meet to share experience and decide on common guidelines. With the Python teams, we recently decided to change our dependencies management system to something more robust because we were not satisfied with `pip` alone. @@ -37,8 +46,11 @@ Among them, only poetry ticks all the boxes. pip-tools and pipenv don't have fea ### Version constraints +{{< unsafe >}} +

{{< img src="35.svg" alt="Poetry logo" >}} - +

+{{< /unsafe >}} Poetry lets you specify your direct dependencies in a standard file called `pyproject.toml`. You can either edit this file manually or use the `poetry` command line tool.