From 62df2a6a0b627d734500ad782378f1723f3e21ab Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 1 Mar 2024 13:44:45 +0100 Subject: [PATCH] Add missing comma separator to version The requirements specified in for `Markdown` are missing a required comma (PEP 0508). It seems like `pip` is able to deal with this issue gracefully, but other tools might not, like `uv`, which complains about the version specification being invalid. Signed-off-by: Leandro Lucarella --- requirements/pypi.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/pypi.txt b/requirements/pypi.txt index 86ad203..6c431aa 100644 --- a/requirements/pypi.txt +++ b/requirements/pypi.txt @@ -7,7 +7,7 @@ # Binary (non-pure) packages may also be listed here, but you # should see if there is a conda package that suits your needs. -Markdown>=3.0<3.3;python_version<"3.6" +Markdown>=3.0,<3.3;python_version<"3.6" Markdown>=3.0;python_version>="3.6" typing;python_version<"3.5" pathlib2