Skip to content

Commit 82db253

Browse files
authored
Bumped version to 4.2.26.0 (#366)
1 parent fcdd282 commit 82db253

File tree

3 files changed

+53
-53
lines changed

3 files changed

+53
-53
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
=========
44

5+
4.2.26.0 (2025-11-07)
6+
=====================
7+
8+
* Upgrade Django to 4.2.26
9+
see https://www.djangoproject.com/weblog/2025/nov/05/security-releases/ for details
10+
11+
512
4.2.25.0 (2025-10-01)
613
=====================
714

aldryn_django/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.2.25.0'
1+
__version__ = "4.2.26.0"

setup.py

Lines changed: 45 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -3,79 +3,72 @@
33

44
from aldryn_django import __version__
55

6-
76
REQUIREMENTS = [
8-
'aldryn-addons',
9-
'Django==4.2.25',
10-
7+
"aldryn-addons",
8+
"Django==4.2.26",
119
# setup utils
12-
'dj-database-url',
13-
'dj-email-url',
14-
'dj-redis-url',
15-
'django-cache-url',
16-
'django-getenv',
17-
'aldryn-client',
18-
'furl',
19-
10+
"dj-database-url",
11+
"dj-email-url",
12+
"dj-redis-url",
13+
"django-cache-url",
14+
"django-getenv",
15+
"aldryn-client",
16+
"furl",
2017
# error reporting
21-
'aiocontextvars',
22-
'sentry-sdk',
23-
18+
"aiocontextvars",
19+
"sentry-sdk",
2420
# wsgi server related
25-
'uwsgi',
26-
21+
"uwsgi",
2722
# database
28-
'psycopg2',
29-
23+
"psycopg2",
3024
# storage
31-
'django-storage-url',
32-
'django-storages[boto3]',
33-
'django-storages[azure]',
34-
25+
"django-storage-url",
26+
"django-storages[boto3]",
27+
"django-storages[azure]",
3528
# helpers
36-
'click',
37-
'aldryn-sites>=0.5.6',
38-
'easy-thumbnails>=2.2',
29+
"click",
30+
"aldryn-sites>=0.5.6",
31+
"easy-thumbnails>=2.2",
3932
]
4033

4134

4235
CLASSIFIERS = [
43-
'Development Status :: 5 - Production/Stable',
44-
'Environment :: Web Environment',
45-
'Intended Audience :: Developers',
46-
'License :: OSI Approved :: BSD License',
47-
'Operating System :: OS Independent',
48-
'Framework :: Django',
49-
'Framework :: Django :: 4.2',
50-
'Programming Language :: Python',
51-
'Programming Language :: Python :: 3',
52-
'Programming Language :: Python :: 3.8',
53-
'Programming Language :: Python :: 3.9',
54-
'Programming Language :: Python :: 3.10',
55-
'Topic :: Internet :: WWW/HTTP',
56-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
57-
'Topic :: Software Development',
58-
'Topic :: Software Development :: Libraries',
36+
"Development Status :: 5 - Production/Stable",
37+
"Environment :: Web Environment",
38+
"Intended Audience :: Developers",
39+
"License :: OSI Approved :: BSD License",
40+
"Operating System :: OS Independent",
41+
"Framework :: Django",
42+
"Framework :: Django :: 4.2",
43+
"Programming Language :: Python",
44+
"Programming Language :: Python :: 3",
45+
"Programming Language :: Python :: 3.8",
46+
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
48+
"Topic :: Internet :: WWW/HTTP",
49+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
50+
"Topic :: Software Development",
51+
"Topic :: Software Development :: Libraries",
5952
]
6053

6154

6255
setup(
63-
name='aldryn_django',
56+
name="aldryn_django",
6457
version=__version__,
65-
author='Divio AG',
66-
author_email='info@divio.ch',
67-
url='https://github.com/divio/aldryn-django',
68-
license='BSD-3-Clause',
69-
description='An opinionated Django setup bundled as an Aldryn Addon',
70-
long_description=open('README.rst').read(),
58+
author="Divio AG",
59+
author_email="info@divio.ch",
60+
url="https://github.com/divio/aldryn-django",
61+
license="BSD-3-Clause",
62+
description="An opinionated Django setup bundled as an Aldryn Addon",
63+
long_description=open("README.rst").read(),
7164
packages=find_packages(),
7265
include_package_data=True,
7366
zip_safe=False,
7467
install_requires=REQUIREMENTS,
7568
classifiers=CLASSIFIERS,
76-
test_suite='tests.settings.run',
77-
entry_points='''
69+
test_suite="tests.settings.run",
70+
entry_points="""
7871
[console_scripts]
7972
aldryn-django=aldryn_django.cli:main
80-
''',
73+
""",
8174
)

0 commit comments

Comments
 (0)