From 25e5337c98aef6247200e107662e6f326eef9545 Mon Sep 17 00:00:00 2001 From: Miguel Johnson Date: Thu, 17 Oct 2024 23:57:34 -0400 Subject: [PATCH 1/2] updating references to 3.8 --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 1 - CHANGELOG.rst | 1 + docs/index.rst | 2 +- setup.cfg | 3 +-- taggit/__init__.py | 2 +- tox.ini | 5 ++--- 7 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b707f10..171c262a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 24c4888c..a11eda95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,6 @@ jobs: matrix: python-version: - - "3.8" - "3.9" - "3.10" - "3.11" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6a3ced30..267d05af 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,7 @@ Changelog ~~~~~~~~~~~~ * Add an admin command to remove orphaned tags +* Remove support for Python 3.8 6.1.0 (2024-09-29) ~~~~~~~~~~~~~~~~~~ diff --git a/docs/index.rst b/docs/index.rst index db978980..ff437888 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,7 @@ Welcome to django-taggit's documentation! ``django-taggit`` is a reusable Django application designed to make adding tagging to your project easy and fun. -``django-taggit`` works with Django 4.1+ and Python 3.8+. +``django-taggit`` works with Django 4.1+ and Python 3.9+. .. toctree:: :maxdepth: 2 diff --git a/setup.cfg b/setup.cfg index eafa1a60..8eaf25b4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,7 +20,6 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -31,7 +30,7 @@ project_urls = Tracker = https://github.com/jazzband/django-taggit/issues [options] -python_requires = >=3.8 +python_requires = >=3.9 packages = find: install_requires = Django>=4.1 include_package_data = true diff --git a/taggit/__init__.py b/taggit/__init__.py index 04327c35..7e543460 100644 --- a/taggit/__init__.py +++ b/taggit/__init__.py @@ -1,2 +1,2 @@ -VERSION = (6, 1, 0) +VERSION = (6, 1, 1) __version__ = ".".join(str(i) for i in VERSION) diff --git a/tox.ini b/tox.ini index d3152f08..af630a80 100644 --- a/tox.ini +++ b/tox.ini @@ -4,15 +4,14 @@ envlist = black flake8 isort - py{38,39,310,311,312}-dj{41,42} + py{39,310,311,312}-dj{41,42} py{310,311,312}-dj{50} py{310,311,312}-djmain docs [gh-actions] python = - 3.8: py38, black, flake8, isort - 3.9: py39 + 3.9: py39, black, flake8, isort 3.10: py310 3.11: py311 3.12: py312 From 848cf57e1048ffd2c63a21b28e474da269c66540 Mon Sep 17 00:00:00 2001 From: Raphael Gaschignard Date: Fri, 18 Oct 2024 18:10:36 +1000 Subject: [PATCH 2/2] Revert version bump --- taggit/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taggit/__init__.py b/taggit/__init__.py index 7e543460..04327c35 100644 --- a/taggit/__init__.py +++ b/taggit/__init__.py @@ -1,2 +1,2 @@ -VERSION = (6, 1, 1) +VERSION = (6, 1, 0) __version__ = ".".join(str(i) for i in VERSION)