Skip to content

Commit

Permalink
Drop Django 3.1 support and add Django 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
claudep committed Aug 23, 2022
1 parent fe9d1e0 commit 41cb10e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version: ['2.2', '3.1', '3.2', '4.0', 'main']
django-version: ['2.2', '3.2', '4.0', '4.1', 'main']
exclude:
- python-version: 3.7
django-version: 4.0
- python-version: 3.7
django-version: 4.1
- python-version: 3.7
django-version: main
- python-version: 3.10
django-version: 2.2
- python-version: 3.10
django-version: 3.1

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Changelog
This document describes changes between each past release.

- Support new non-jQuery formset:added event triggered on Django 4.1
- Confirmed support for Django 4.0
- Drop support for Django 3.0 and Python 3.6
- Confirm support for Django 4.0 and 4.1
- Drop support for Django 3.0, 3.1 and Python 3.6
- Add Python 3.10 support

3.4.0 (2021-11-25)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ In your code:
Releases
========

Latest release is 3.4.0. It supports Python 3.7+ and Django 2.2 to 4.0.
Latest release is 3.4.0. It supports Python 3.7+ and Django 2.2 to 4.1.

Using TinyMCE 5.10.1.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def read_file(filename):
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
py{37,38,39}-dj{22,31}
py{37,38,39}-dj22
py{37,38,39,310}-dj32
py{38,39,310}-dj{40,main}
py{38,39,310}-dj{40,41,main}
flake8

[testenv]
Expand All @@ -11,6 +11,7 @@ deps =
dj31: Django>=3.1,<3.2
dj32: Django>=3.2,<4.0
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
djmain: https://github.com/django/django/archive/main.tar.gz
coverage
pyenchant
Expand Down Expand Up @@ -42,7 +43,7 @@ python =
[gh-actions:env]
DJANGO =
2.2: dj22
3.1: dj31
3.2: dj32
4.0: dj40
4.1: dj41
main: djmain

0 comments on commit 41cb10e

Please sign in to comment.