From aa9a4c1416dee66c7d2a3fbf946b1ee5def04efd Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 22 Jun 2026 22:29:45 +0200 Subject: [PATCH] blake3: exclude 1.0.9 release 1.0.9 does not build on windows/msys2/mingw. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 39609c60e..298a53887 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ dependencies = [ "backports-zstd; python_version < '3.14'", # for python < 3.14. "jsonargparse>=4.47.0", "PyYAML>=6.0.2", # we need to register our types with yaml, jsonargparse uses yaml for config files - "blake3>=1.0.0", + "blake3>=1.0.0,!=1.0.9", # 1.0.9 does not build on windows/msys2/mingw ] [project.optional-dependencies]