python312Packages.versioningit: don't test with pydantic_1

This commit is contained in:
Robert Schütz 2024-10-27 19:00:51 -07:00
parent 07b8891968
commit 5abf5d4a9b
2 changed files with 3 additions and 4 deletions

View File

@ -36,6 +36,9 @@ buildPythonPackage rec {
++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ] ++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ]
++ lib.optionals (pythonOlder "3.11") [ tomli ]; ++ lib.optionals (pythonOlder "3.11") [ tomli ];
# AttributeError: type object 'CaseDetails' has no attribute 'model_validate_json'
doCheck = lib.versionAtLeast pydantic.version "2";
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
build build

View File

@ -318,10 +318,6 @@ let
]; ];
}; };
versioningit = super.versioningit.overridePythonAttrs {
doCheck = false;
};
# Pinned due to API changes ~1.0 # Pinned due to API changes ~1.0
vultr = super.vultr.overridePythonAttrs (oldAttrs: rec { vultr = super.vultr.overridePythonAttrs (oldAttrs: rec {
version = "0.1.2"; version = "0.1.2";