Skip to content

Commit

Permalink
Formalise support for Django 5; drop support for 4.0-4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gasman committed Jan 3, 2024
1 parent e810af9 commit ed520b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,14 @@ jobs:
database: "postgresql"
psycopg: "psycopg2>=2.9.2"
experimental: false
- python: "3.9"
django: "Django>=4.0,<4.1"
taggit: "django-taggit>=2.1.0"
database: "sqlite3"
psycopg: "psycopg2>=2.9.2"
experimental: false
- python: "3.10"
django: "Django>=4.1,<4.2"
taggit: "django-taggit>=2.1.0"
database: "postgresql"
psycopg: "psycopg2>=2.9.2"
experimental: false
- python: "3.11"
django: "Django>=4.2,<4.3"
taggit: "django-taggit>=2.1.0"
database: "postgresql"
psycopg: "psycopg2>=2.9.2"
experimental: false
- python: "3.12"
django: "Django>=4.2,<4.3"
django: "Django>=5.0,<5.1"
taggit: "django-taggit>=2.1.0"
database: "sqlite3"
psycopg: "psycopg2>=2.9.2"
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
py{38,39}-dj{32,41,42}-{sqlite,postgres}-taggit2
py{310}-dj{32,41,42,50stable,master}-{sqlite,postgres}-taggit2
py{311}-dj{41,42,50stable,master}-{sqlite,postgres}-taggit2
py{312}-dj{41,42,50stable,master}-{sqlite,postgres}-taggit2
py{38,39}-dj{32,42}-{sqlite,postgres}-taggit2
py{310}-dj{32,42,50,50stable,master}-{sqlite,postgres}-taggit2
py{311}-dj{42,50,50stable,master}-{sqlite,postgres}-taggit2
py{312}-dj{42,50,50stable,master}-{sqlite,postgres}-taggit2

[testenv]
allowlist_externals = ./runtests.py
Expand All @@ -20,8 +20,8 @@ deps =
taggit2: django-taggit>=2.0
pytz>=2022.4
dj32: Django>=3.2,<3.3
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<4.3
dj50: Django>=5.0,<5.1
dj50stable: git+https://github.com/django/django.git@stable/5.0.x#egg=Django
djmaster: git+https://github.com/django/django.git@main#egg=Django
postgres: psycopg2>=2.9
Expand Down

0 comments on commit ed520b6

Please sign in to comment.