From fa716d3c268bc362b17a3520887cbab1500e8e55 Mon Sep 17 00:00:00 2001 From: Shengyu Zhang Date: Wed, 2 Aug 2023 19:23:51 +0800 Subject: [PATCH] Require wand>0.6.11 to prevent crash on macOS ref: https://github.com/emcconville/wand/issues/587 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 409905a..1a4e7fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ requires-python = ">=3.8" dependencies = [ "Sphinx >= 4", "Jinja2", - "wand", + "wand >= 0.6.11", # https://github.com/emcconville/wand/issues/587 ] dynamic = ["version"] # required by setuptools_scm, see section [build-system]