From 6a4d7421b88a83453e116a70adc28597dd2adb5e Mon Sep 17 00:00:00 2001 From: Carl George Date: Sun, 20 Oct 2024 12:33:36 -0500 Subject: [PATCH] Fix k5test minimum version requirement The test function test_set_password fails when run with k5test 0.10.3. ``` TypeError: MITRealm.start_kadmind() missing 1 required positional argument: 'env' ``` This is because it is running the start_kadmind method with no arguments, but the env argument didn't become optional until k5test 0.10.4. That is now the new minimum version for this test dependency. https://github.com/jborean93/pykrb5/commit/4cbfe7d89345e779c5252c06a7ef411fa155d2fb https://github.com/pythongssapi/k5test/commit/aa9cf871e34a636f34e1207e733271580a9a3418 --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 8776986..81baeb3 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,6 +1,6 @@ black==22.10.0 isort==5.10.1 -k5test>=0.10.0 +k5test>=0.10.4 mypy==0.982 pre-commit pytest