From 616a799a9fd8e95fdc9ef1ce029410e22b53f327 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 26 Jul 2022 16:59:15 +0200 Subject: [PATCH] MAINT: ensure minimum Meson version is consistent in pyproject.toml This dependency was bumped from 0.60.0 to 0.62.0 in gh-58, but only in one of the two places where it was needed. These two places should probably always be kept consistent with each other, even though technically it's not _required_. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b219d5654..66669461c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ dependencies = [ 'colorama; os_name == "nt"', - 'meson>=0.60.0', + 'meson>=0.62.0', 'ninja', 'pyproject-metadata>=0.5.0', # not a hard dependency, only needed for projects that use PEP 621 metadata 'tomli>=1.0.0',