Skip to content

Commit 94d750b

Browse files
authored
Merge pull request #223 from edly-io/maq/django-52
Feat: Upgrade to django 5.2
2 parents 5db6dc1 + 4cac3bc commit 94d750b

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
os: [ubuntu-latest]
1717
python-version: ['3.11', '3.12']
18-
toxenv: [django42, quality, csslint, eslint]
18+
toxenv: [django42, django52, quality, csslint, eslint]
1919

2020
steps:
2121
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,7 @@ Version 2.1.0
5050
Version 3.0.0
5151

5252
Dropped support for Python 3.8 and added support for Python 3.11 and 3.12.
53+
54+
Version 3.1.0
55+
56+
Added support for django 5.2.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from setuptools import find_packages, setup
99

10-
version = '3.0.0'
10+
version = '3.1.0'
1111
description = __doc__.strip().split('\n')[0]
1212
this_directory = path.abspath(path.dirname(__file__))
1313
with open(path.join(this_directory, 'README.rst')) as file_in:
@@ -122,6 +122,7 @@ def is_requirement(line):
122122
'Programming Language :: Python :: 3.12',
123123
'Framework :: Django',
124124
'Framework :: Django :: 4.2',
125+
'Framework :: Django :: 5.2',
125126
'Topic :: Education',
126127
'Topic :: Internet :: WWW/HTTP',
127128
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[tox]
2-
envlist = csslint,eslint,pycodestyle,pylint,py{311, 312}-django{42}
2+
envlist = csslint,eslint,pycodestyle,pylint,py{311, 312}-django{42, 52}
33

44
[testenv]
55
deps =
66
django42: Django>=4.2,<4.3
7+
django52: Django>=5.2,<5.3
78
-rrequirements/test.txt
89
commands =
910
coverage run manage.py test

0 commit comments

Comments
 (0)