From 2799427fa213c95de0276d1a49bfbf076b7633f0 Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Fri, 7 Jul 2023 10:44:48 -0400 Subject: [PATCH 1/2] Loosen version requirement Right now this is giving an error on installation: ``` ERROR: pytest-markdown-docs 0.4.1 has requirement markdown-it-py<1.2.0,>=1.1.0, but you'll have markdown-it-py 3.0.0 which is incompatible. ``` --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 67b9e50..bcec63e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ include = ["LICENSE"] [tool.poetry.dependencies] python = "^3.7" -markdown-it-py = "~=2.2.0" +markdown-it-py = ">=2.2.0" [tool.poetry.plugins] From f36aea792a4a9fc2f8643efbcf33ab56d129ffcd Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Tue, 11 Jul 2023 20:37:44 -0400 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bcec63e..3edf5e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ include = ["LICENSE"] [tool.poetry.dependencies] python = "^3.7" -markdown-it-py = ">=2.2.0" +markdown-it-py = ">=2.2.0, <4.0" [tool.poetry.plugins]