From 718aff4869c20b57dd4110a312957a166b64a1b8 Mon Sep 17 00:00:00 2001 From: Rust Saiargaliev Date: Tue, 5 Dec 2023 08:00:11 +0100 Subject: [PATCH] Drop Django 4.1 support (reached end of life) --- CHANGELOG.md | 1 + pyproject.toml | 1 - tox.ini | 9 ++++----- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ced4af7..b596fc52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed ### Removed +- Drop Django 4.1 support (reached end of life) ## [1.17.0](https://pypi.org/project/model-bakery/1.17.0/) diff --git a/pyproject.toml b/pyproject.toml index 75baf1d5..22dac1fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,6 @@ classifiers = [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Framework :: Django :: 3.2", - "Framework :: Django :: 4.1", "Framework :: Django :: 4.2", "Framework :: Django :: 5.0", "Intended Audience :: Developers", diff --git a/tox.ini b/tox.ini index 6b95ae56..ed28b1af 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,9 @@ [tox] env_list = - py38-django{32,41,42}-{postgresql,sqlite} - py39-django{32,41,42}-{postgresql,sqlite} - py310-django{32,41,42,50}-{postgresql,sqlite} - py311-django{32,41,42,50}-{postgresql,sqlite} + py38-django{32,42}-{postgresql,sqlite} + py39-django{32,42}-{postgresql,sqlite} + py310-django{32,42,50}-{postgresql,sqlite} + py311-django{32,42,50}-{postgresql,sqlite} py311-django{42,50}-{postgresql-psycopg3} py312-django{42,50}-{postgresql-psycopg3} @@ -25,7 +25,6 @@ deps = pytest pytest-django django32: Django==3.2 - django41: Django>=4.1,<4.2 django42: Django>=4.2,<5 django50: Django>=5.0,<5.1 postgresql: psycopg2-binary