Skip to content

Commit

Permalink
Add support for Django 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
simkimsia authored and sergeyklay committed Mar 24, 2023
1 parent 1e834a1 commit f43deca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ the code on `GitHub <https://github.com/joke2k/django-environ>`_,
and the latest release on `PyPI <https://pypi.org/project/django-environ/>`_.

It’s rigorously tested on Python 3.6+, and officially supports
Django 1.11, 2.2, 3., 3.1, 3.2, 4.0 and 4.1.
Django 1.11, 2.2, 3., 3.1, 3.2, 4.0, 4.1, and 4.2.

If you'd like to contribute to ``django-environ`` you're most welcome!

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

from setuptools import find_packages, setup


# Use this code block for future deprecations of Python version:
#
# import warnings
Expand Down Expand Up @@ -145,6 +144,7 @@ def get_version_string():
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',

'Operating System :: OS Independent',

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ envlist =
manifest
py{36,37,38,39,310,311}-django{111,22}
py{36,37,38,39,310,311}-django{30,31,32}
py{38,39,310,311}-django{40,41}
py{38,39,310,311}-django{40,41,42}
pypy-django{111,22,30,31,32}

[gh-actions]
Expand All @@ -44,6 +44,7 @@ deps =
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2rc1,<5.0
commands_pre =
python -m pip install --upgrade pip
python -m pip install .
Expand Down

0 comments on commit f43deca

Please sign in to comment.