Skip to content

Commit

Permalink
Merge pull request #925 from guel-codes/900-python38-cleanup
Browse files Browse the repository at this point in the history
Remove Python 3.8 from support
  • Loading branch information
rtpg authored Oct 18, 2024
2 parents f4f82af + 848cf57 commit e41b5fc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:

matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e41b5fc

Please sign in to comment.