Skip to content

Commit

Permalink
Fix k5test minimum version requirement
Browse files Browse the repository at this point in the history
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.

4cbfe7d
pythongssapi/k5test@aa9cf87
  • Loading branch information
carlwgeorge committed Oct 20, 2024
1 parent 0b9e404 commit 6a4d742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 6a4d742

Please sign in to comment.