bumpver: Disable failing test

Setuptools version specifier validation broke this one.
This commit is contained in:
Martin Weinelt 2023-03-12 19:28:50 +01:00
parent 750e746393
commit 2b68604875
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -20,6 +20,11 @@ python3.pkgs.buildPythonApplication rec {
nativeCheckInputs = [ python3.pkgs.pytestCheckHook git mercurial];
disabledTests = [
# fails due to more aggressive setuptools version specifier validation
"test_parse_default_pattern"
];
meta = with lib; {
description = "Bump version numbers in project files";
homepage = "https://pypi.org/project/bumpver/";