From a69aa6d60f1a129a92acd1e680b72538c115e9ff Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Thu, 12 Dec 2024 15:41:34 -0500 Subject: [PATCH] BLD: Pin meson-python to <0.17.0 This is currently dropping scalable SVG symlinks, which breaks the toolbar on GTK. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5451e972de8d..832d76308e0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ requires-python = ">=3.10" [project.optional-dependencies] # Should be a copy of the build dependencies below. dev = [ - "meson-python>=0.13.1", + "meson-python>=0.13.1,<0.17.0", "pybind11>=2.13.2,!=2.13.3", "setuptools_scm>=7", # Not required by us but setuptools_scm without a version, cso _if_ @@ -70,7 +70,7 @@ dev = [ build-backend = "mesonpy" # Also keep in sync with optional dependencies above. requires = [ - "meson-python>=0.13.1", + "meson-python>=0.13.1,<0.17.0", "pybind11>=2.13.2,!=2.13.3", "setuptools_scm>=7", ]