From d17d27782337af03b76af2fa5d224c8c327eb3d1 Mon Sep 17 00:00:00 2001 From: Will Barton Date: Thu, 8 Jun 2023 08:37:44 -0400 Subject: [PATCH] Prep for 5.0.13 release --- docs/releasenotes.md | 16 ++++++++++++++++ setup.py | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/releasenotes.md b/docs/releasenotes.md index d1882ae..d56af9d 100644 --- a/docs/releasenotes.md +++ b/docs/releasenotes.md @@ -4,8 +4,24 @@ ### What's new? + +## 5.0.13 + +### What's new? + +- Modernize code for Python 3.6+ (thanks [@adamchainz](https://github.com/adamchainz)!) +- Run linters with Python 3.11 (thanks [@adamchainz](https://github.com/adamchainz)!) +- Format with Black 23 (thanks [@adamchainz](https://github.com/adamchainz)!) - Added Django 4.2 support (thanks [@adamchainz](https://github.com/adamchainz)!). +### Removals + +- Removed Python 3.6 support (thanks [@michael-k](https://github.com/michael-k)!). + +### Bug fixes + +- Removed errant print statement (thanks [@Natim](https://github.com/Natim)!). + ## 5.0.12 diff --git a/setup.py b/setup.py index 0d38a51..a7e7007 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup -install_requires = ["Django>=1.11"] +install_requires = ["Django>=2.2"] testing_extras = [ "coverage>=3.7.0", @@ -28,7 +28,7 @@ long_description=open("README.md", encoding="utf-8").read(), long_description_content_type="text/markdown", license="CC0", - version="5.0.12", + version="5.0.13", include_package_data=True, packages=find_packages(), python_requires=">=3.7",