Skip to content

Commit

Permalink
Prepare for v0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 committed Oct 1, 2024
1 parent a3fffd7 commit 971bc02
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13.0-rc.2'
- '3.13.0-rc.3'
provider:
- mit
- heimdal
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Require Python 3.8 or newer (dropped 3.7)
* Added Python 3.13 wheel for macOS
* Added password management APIs
* [krb5_chpw_message](https://web.mit.edu/kerberos/krb5-latest/doc/appdev/refs/api/krb5_chpw_message.html)
* [krb5_set_password](https://web.mit.edu/kerberos/krb5-latest/doc/appdev/refs/api/krb5_set_password.html)
* [krb5_set_password_using_ccache](https://web.mit.edu/kerberos/krb5-latest/doc/appdev/refs/api/krb5_set_password_using_ccache.html)

Expand Down
7 changes: 6 additions & 1 deletion src/krb5/_adpi.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright: (c) 2024 Jordan Borean (@jborean93) <[email protected]>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)

from __future__ import annotations

import enum
import struct
import typing
Expand Down Expand Up @@ -45,7 +50,7 @@ class ADPolicyInfo(typing.NamedTuple):
min_age: int

@classmethod
def from_bytes(cls, data: bytes) -> "ADPolicyInfo":
def from_bytes(cls, data: bytes) -> ADPolicyInfo:
"""Decode AD policy result from byte string
Args:
Expand Down

0 comments on commit 971bc02

Please sign in to comment.