diff --git a/CHANGELOG.md b/CHANGELOG.md index afb4e6f..ed4761e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ ## [Unreleased] +### Added + +- Added support for Python 3.13. + ### Removed - Dropped support for Django 5.0. diff --git a/README.md b/README.md index 90fcc65..55bce83 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It consists of two parts: ## Requirements -- Python 3.8, 3.9, 3.10, 3.11, 3.12 +- Python 3.9, 3.10, 3.11, 3.12, 3.13 - Django 4.2, 5.1, 5.2 ## Getting Started diff --git a/noxfile.py b/noxfile.py index 9b89848..4963112 100644 --- a/noxfile.py +++ b/noxfile.py @@ -12,7 +12,8 @@ PY310 = "3.10" PY311 = "3.11" PY312 = "3.12" -PY_VERSIONS = [PY39, PY310, PY311, PY312] +PY313 = "3.13" +PY_VERSIONS = [PY39, PY310, PY311, PY312, PY313] PY_DEFAULT = PY_VERSIONS[0] PY_LATEST = PY_VERSIONS[-1]