commit: 3860094b94dd2185db852db4b8674c41c4dd65ed Author: Lucio Sauer <watermanpaint <AT> posteo <DOT> net> AuthorDate: Wed May 8 10:46:33 2024 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Wed May 8 16:23:21 2024 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=3860094b
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 <watermanpaint <AT> posteo.net> Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> 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", ]
