Skip to content

Commit

Permalink
💥 Drop Django 3.2 from supported versions
Browse files Browse the repository at this point in the history
Django 3.2 is end-of-life as of April 1st, 2024. While the project
may still work, we no longer guarantee it.
  • Loading branch information
sergei-maertens committed May 1, 2024
1 parent 175d7ba commit 177bbc3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 16 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
django: ['3.2', '4.2', '5.0']
exclude:
- python: '3.11'
django: '3.2'
- python: '3.12'
django: '3.2'
python: ['3.10', '3.11', '3.12']
django: ['4.2', '5.0']
include:
- python: '3.8'
django: '5.0'
django: '4.2'
- python: '3.9'
django: '5.0'
django: '4.2'

name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }})

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ keywords = cookies, cookie-consent, cookie bar
classifiers =
Development Status :: 4 - Beta
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Intended Audience :: Developers
Expand All @@ -40,7 +39,7 @@ zip_safe = False
include_package_data = True
packages = find:
install_requires =
django >= 3.2
django >= 4.2
django-appconf
tests_require =
pytest
Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tox]
envlist =
py{38,39}-django{32,42}
py310-django32
py{38,39}-django42
py{310,311,312}-django{42,50}
isort
black
Expand All @@ -19,7 +18,6 @@ python =

[gh-actions:env]
DJANGO =
3.2: django32
4.2: django42
5.0: django50

Expand All @@ -31,7 +29,6 @@ extras =
tests
coverage
deps =
django32: Django~=3.2.0
django42: Django~=4.2.0
django50: Django~=5.0.0
commands =
Expand Down Expand Up @@ -78,6 +75,5 @@ extras =
docs
commands=
pytest check_sphinx.py -v \
--junitxml=../reports/junit.xml \
--tb=auto \
{posargs}

0 comments on commit 177bbc3

Please sign in to comment.