Skip to content

Commit 3566d48

Browse files
authored
Drop support for Django 2.2 (#324)
1 parent 099e1c0 commit 3566d48

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 22.1 (in development)
44

55
- Add support for Django 4.1.
6+
- Drop support for Django 2.2 (EOL).
67

78
## 21.3 (2021-12-27)
89

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Ready for production. Issues and pull requests welcome, see [CONTRIBUTING.md](CO
1717

1818
## Requirements
1919

20-
Python 3.7 or newer with Django >= 2.2 or newer.
20+
Python 3.7 or newer with Django 3.2 or newer.
2121

2222
## Documentation
2323

@@ -30,7 +30,7 @@ The full documentation is at https://django-bootstrap5.readthedocs.io/
3030
```bash
3131
pip install django-bootstrap5
3232
```
33-
33+
3434
2. Add to `INSTALLED_APPS` in your `settings.py`:
3535

3636
```python

example/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
..
2-
django>=2.2
2+
django>=3.2

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ classifiers =
1212
Development Status :: 5 - Production/Stable
1313
Environment :: Web Environment
1414
Framework :: Django
15-
Framework :: Django :: 2.2
1615
Framework :: Django :: 3.2
1716
Framework :: Django :: 4.0
17+
Framework :: Django :: 4.1
1818
Intended Audience :: Developers
1919
License :: OSI Approved :: BSD License
2020
Operating System :: OS Independent
@@ -34,7 +34,7 @@ zip_safe = False
3434
include_package_data = True
3535
python_requires = >=3.7
3636
install_requires =
37-
Django>=2.2
37+
Django>=3.2
3838

3939
[options.packages.find]
4040
where = src

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ setenv =
2626
commands =
2727
coverage run --parallel-mode manage.py test -v1 --noinput
2828
deps =
29-
django22: Django==2.2.*
3029
django32: Django==3.2.*
3130
django40: Django==4.0.*
3231
django41: Django==4.1.*

0 commit comments

Comments
 (0)