From 6bded66c932d487144fcd6136c3a78a6583e3576 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 11 Sep 2024 15:25:11 -0500 Subject: [PATCH] PYTHON-4760 Add support for Python 3.13 (#99) --- .github/workflows/dist.yml | 1 + doc/changelog.rst | 5 +++++ pyproject.toml | 1 + 3 files changed, 7 insertions(+) diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index bcf7778..b9e28eb 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -42,6 +42,7 @@ jobs: ls wheelhouse/*cp310*.whl ls wheelhouse/*cp311*.whl ls wheelhouse/*cp312*.whl + ls wheelhouse/*cp313*.whl - uses: actions/upload-artifact@v4 with: diff --git a/doc/changelog.rst b/doc/changelog.rst index a7190a1..8b27991 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +Changes in Version 0.12.0 +------------------------- +- Add support for Python 3.13. + + Changes in Version 0.11.0 ------------------------- diff --git a/pyproject.toml b/pyproject.toml index c95070c..c427390 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: System :: Systems Administration :: Authentication/Directory", ] dependencies = []