From 3860094b94dd2185db852db4b8674c41c4dd65ed Mon Sep 17 00:00:00 2001 From: Lucio Sauer Date: Wed, 8 May 2024 12:46:33 +0200 Subject: pyproject: bump snakeoil to restore compat with >=python-3.11.9 ArgumentParser added a separator to its option tuple with >=python-3.11.9, which snakeoil-0.10.7 does not handle correctly. https://github.com/python/cpython/pull/114180 Signed-off-by: Lucio Sauer Signed-off-by: Arthur Zamarin --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fd0eb616..45fe7213 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ requires = [ "pathspec", "tree-sitter>=0.21.0", "tree-sitter-bash>=0.21.0", - "snakeoil~=0.10.7", + "snakeoil~=0.10.8", "pkgcore~=0.12.25", ] build-backend = "py_build" @@ -46,7 +46,7 @@ dependencies = [ "pathspec", "tree-sitter>=0.21.0", "tree-sitter-bash>=0.21.0", - "snakeoil~=0.10.7", + "snakeoil~=0.10.8", "pkgcore~=0.12.25", ] -- cgit v1.2.3-65-gdbad