From 1d4f1878b545cf29bd5e91782ce62efddde8d92a Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Tue, 21 May 2024 15:30:00 -0500 Subject: [PATCH] drop Python 3.8 (#167) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- CHANGELOG.md | 1 + pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 342908c5..79f8a48b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - `boto3` as an explicit dependency has been removed in favor of `django-storages[s3]`. - Removed deprecated `version` property from all Docker `compose*.yml` files. +- Dropped support for Python 3.8. ## [2024.23] diff --git a/pyproject.toml b/pyproject.toml index 960cfe21..ab995fce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ dynamic = ["version"] license = {file = "LICENSE"} name = "django-twc-project" readme = "README.md" -requires-python = ">= 3.8" +requires-python = ">= 3.9" [tool.bumpver] commit = true @@ -68,8 +68,8 @@ extend-include = ["*.pyi?"] indent-width = 4 # Same as Black. line-length = 88 -# Assume Python >3.8. -target-version = "py38" +# Assume Python >3.9 +target-version = "py39" [tool.ruff.format] # Like Black, indent with spaces, rather than tabs.