diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b35474..6b1043a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: - '3.8' - '3.9' - '3.10' + - '3.11' + - '3.12' steps: - uses: actions/checkout@v4 - name: Install Poetry diff --git a/CHANGELOG.md b/CHANGELOG.md index d9b675f..70efda7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ This project adheres to [CHANGELOG](http://keepachangelog.com/). - Add proper error handling for cases when SOA record is None +### Added + +- Official Python 3.11 support +- Official Python 3.12 support + ### Removed - Official Python 3.6 support diff --git a/pyproject.toml b/pyproject.toml index 98f2c74..475367f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,8 @@ classifiers = [ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Security', ]