Skip to content

Commit

Permalink
chore: Add support for 4.2 (#262)
Browse files Browse the repository at this point in the history
* chore: Add support for 4.2

* chore: Remove master from python 3.8, 3.9

The master version of Django doesn't support anymore 3.8 and 3.9.

* chore: Remove extra new line

Formatted through black.
  • Loading branch information
Azd325 committed May 6, 2023
1 parent ef9b8b1 commit 1d14f2a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Python Django
======== ==========
3.5 2.2
3.6-3.7 2.2–3.2
3.8-3.9 2.2–4.1
3.10 3.2-4.1
3.11 4.1
3.8-3.9 2.2–4.2
3.10 3.2-4.2
3.11 4.1-4.2
======== ==========

- Added support for Django 4.0, 4.1 and Python 3.10, 3.11.
- Added support for Django 4.0, 4.1, 4.2 and Python 3.10, 3.11.
- Removed support for Django 2.1

0.14.0 (2021-06-08)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Django-extra-views is a Django package which introduces additional class-based v
in order to simplify common design patterns such as those found in the Django
admin interface.

Supported Python and Django versions: Python 3.5+, Django 2.2-4.1,
Supported Python and Django versions: Python 3.5+, Django 2.2-4.2,
see `tox.ini <https://github.com/AndrewIngram/django-extra-views/blob/master/tox.ini>`_ for an up-to-date list.

Full documentation is available at `read the docs`_.
Expand Down
1 change: 0 additions & 1 deletion extra_views_tests/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = [("contenttypes", "0002_remove_content_type_name")]
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
envlist = py35-django{22}
py36-django{22,30,31,32}
py37-django{22,30,31,32}
py38-django{22,30,31,32,40,41,master}
py39-django{22,30,31,32,40,41,master}
py310-django{32,40,41,master}
py311-django{41,master}
py38-django{22,30,31,32,40,41,42}
py39-django{22,30,31,32,40,41,42}
py310-django{32,40,41,42,master}
py311-django{41,42,master}
black
isort
flake8
Expand Down Expand Up @@ -39,6 +39,7 @@ deps =
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
djangomaster: https://github.com/django/django/archive/main.tar.gz
pytest-django
pytest-cov
Expand Down

0 comments on commit 1d14f2a

Please sign in to comment.