From 3badc7d1a402454d10102944e00d6d1a4100fb44 Mon Sep 17 00:00:00 2001 From: Nam Nguyen Date: Wed, 6 Jan 2021 12:19:46 -0800 Subject: [PATCH] Loosen Pygments requirement in poetry Currently, PyPI package is built with `~2.6.1` when Pygments' latest version is `2.7.3`. This creates a conflict with, e.g., Plumage theme, which asks for `^2.7.0`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c41f8787..3e3fd250 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ blinker = "^1.4" docutils = "^0.16" feedgenerator = "^1.9" jinja2 = "~2.11" -pygments = "~2.6.1" +pygments = "^2.6" python-dateutil = "^2.8" pytz = "^2020.1" unidecode = "^1.1"