Skip to content

Commit 7baf3b8

Browse files
authored
Dropped Django 3.2, Python 3.6 and 3.7 support.
1 parent f674603 commit 7baf3b8

File tree

5 files changed

+9
-16
lines changed

5 files changed

+9
-16
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ on:
1010
jobs:
1111
tests:
1212
name: Python ${{ matrix.python-version }}
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
strategy:
1515
fail-fast: false
1616
matrix:
1717
python-version:
18-
- '3.6'
19-
- '3.7'
2018
- '3.8'
2119
- '3.9'
2220
- '3.10'

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
### Breaking
66

7-
* Support for Django 2.2, 4.0, and 4.1 has been dropped.
7+
* Support for Django 2.2, 3.2, 4.0, and 4.1 has been dropped.
8+
9+
* Support for Python 3.6 and 3.7 has been dropped.
810

911
### Enhancements
1012

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ then “Overview” on the top right, next to “add request”.
3232
Requirements
3333
------------
3434

35-
* **Python**: 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12
36-
* **Django**: 3.2, 4.0, 4.1, 4.2, 5.0
35+
* **Python**: 3.8, 3.9, 3.10, 3.11, 3.12
36+
* **Django**: 4.2, 5.0
3737
* **python-dateutil**
3838

3939
django-request 1.5.1_ is the last version that supports Django 1.4, 1.5, 1.6.
@@ -45,8 +45,8 @@ django-request 1.5.5_ is the last version that supports Django 1.10.
4545
django-request 1.5.6_ is the last version that supports Django 1.11, 2.0, 2.1,
4646
3.0, 3.1, and Python 2.7 and 3.4.
4747

48-
django-request 1.6.3_ is the last version that supports Django 2.2, 4.0, and
49-
4.1.
48+
django-request 1.6.3_ is the last version that supports Django 2.2, 3.2, 4.0,
49+
4.1, and Python 3.6 and 3.7.
5050

5151
.. _`1.5.1`: https://pypi.org/project/django-request/1.5.1/
5252
.. _`1.5.4`: https://pypi.org/project/django-request/1.5.4/

setup.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,13 @@ classifiers =
1616
Development Status :: 5 - Production/Stable
1717
Environment :: Web Environment
1818
Framework :: Django
19-
Framework :: Django :: 3.2
2019
Framework :: Django :: 4.2
2120
Framework :: Django :: 5.0
2221
Intended Audience :: Developers
2322
License :: OSI Approved :: BSD License
2423
Operating System :: OS Independent
2524
Programming Language :: Python
2625
Programming Language :: Python :: 3
27-
Programming Language :: Python :: 3.6
28-
Programming Language :: Python :: 3.7
2926
Programming Language :: Python :: 3.8
3027
Programming Language :: Python :: 3.9
3128
Programming Language :: Python :: 3.10
@@ -34,7 +31,7 @@ classifiers =
3431

3532
[options]
3633
install_requires =
37-
Django>=3.2
34+
Django>=4.2
3835
python-dateutil
3936
packages =
4037
request

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
{py36,py37,py38,py39,py310}-django32-test
43
{py38,py39,py310,py311,py312}-django42-test
54
{py310,py311,py312}-django50-test
65
{py310,py311,py312}-djangomain-test
@@ -10,8 +9,6 @@ envlist =
109

1110
[testenv]
1211
basepython =
13-
py36: python3.6
14-
py37: python3.7
1512
py38: python3.8
1613
py39: python3.9
1714
py310: python3.10
@@ -21,7 +18,6 @@ commands =
2118
test: coverage run ./runtests.py
2219
deps =
2320
coverage
24-
django32: Django>=3.2,<4.0
2521
django42: Django>=4.2,<5.0
2622
django50: Django>=5.0,<5.1
2723
djangomain: https://github.com/django/django/archive/main.tar.gz

0 commit comments

Comments
 (0)