python-mdformat-gfm/0001-removes-cap-on-mdit-py-plugins-dependency.patch
2023-11-09 10:00:53 +08:00

26 lines
790 B
Diff

From 87e5d0d46f90ebfb8be068a943b1645503f13248 Mon Sep 17 00:00:00 2001
From: desert-sailor <dxwangk@isoftstone.com>
Date: Thu, 9 Nov 2023 09:58:35 +0800
Subject: [PATCH] removes cap on mdit-py-plugins dependency
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 825c2f8..fceb3a6 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -27,7 +27,7 @@ keywords = ["mdformat", "markdown", "formatter", "gfm"]
python = "^3.7"
mdformat = ">=0.7.5,<0.8.0"
markdown-it-py = { version = "*", extras = [ "linkify" ] } # Let `mdformat` choose version boundaries for `markdown-it-py`
-mdit-py-plugins = ">=0.2.0,<0.4.0"
+mdit-py-plugins = ">=0.2.0"
mdformat-tables = ">=0.4.0"
[tool.poetry.dev-dependencies]
--
2.41.0