From 36bef45b5e603ccb9076912fe28b569a4315efa7 Mon Sep 17 00:00:00 2001 From: Dan Holdsworth Date: Tue, 14 May 2024 11:35:24 +0100 Subject: [PATCH] remove poetry from index.md --- .../roadmaps/python/content/105-python-package-managers/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/data/roadmaps/python/content/105-python-package-managers/index.md b/src/data/roadmaps/python/content/105-python-package-managers/index.md index 92e50117a..0a65c7650 100644 --- a/src/data/roadmaps/python/content/105-python-package-managers/index.md +++ b/src/data/roadmaps/python/content/105-python-package-managers/index.md @@ -4,5 +4,4 @@ Package managers allow you to manage the dependencies (external code written by `PyPI` and `Pip` are the most common contenders but here are some other options available as well: -- [**Poetry**](https://python-poetry.org/) : Manages dependencies via isolation - [**PIPX**](https://github.com/pypa/pipx) : Isolation-based app deployment, so you don't have to affect the system or user PIP libraries. It enables you to try individual python CLI tools without affecting other dependencies.