Skip to content

Commit 7d412b9

Browse files
authored
feat: Release 3.2.7 (#504)
* Update __init__.py * Update CHANGELOG.rst * Update setup.py * Update django-3.2.txt * Update and rename django-4.1.txt to django-4.2.txt * Update test.yml * Create django-5.0.txt * Update django-5.0.txt * Update settings.py * Update test.yml * Update test.yml * Update build instructions in README.rst
1 parent 7ee48a8 commit 7d412b9

File tree

10 files changed

+21
-9
lines changed

10 files changed

+21
-9
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,17 @@ jobs:
1212
requirements-file: [
1313
django-2.2.txt,
1414
django-3.2.txt,
15-
django-4.1.txt
15+
django-4.2.txt,
16+
django-5.0.txt,
1617
]
1718
os: [
1819
ubuntu-20.04,
1920
]
21+
exclude:
22+
- requirements-file: django-5.0.txt
23+
python-version: 3.8
24+
- requirements-file: django-5.0.txt
25+
python-version: 3.9
2026

2127
steps:
2228
- uses: actions/checkout@v1

CHANGELOG.rst

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

5-
unreleased
6-
==========
5+
3.2.7 (2024-01-04)
6+
==================
77

88
* Style delete links
99
* Fix read-only fields overlapping with their labels

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ To **compile CSS** run the following commands using **node 16**:
8080

8181
* ``nvm use``
8282
* ``npm install``
83-
* ``gulp``
83+
* ``gulp icons sass bundle`` (or if gulp is not found by the shell ``npx gulp icons sass bundle``)
84+
8485

8586
For further options have a look at the ``gulpfile.js``.
8687

djangocms_admin_style/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
10. Publish the release when ready
1717
11. Github actions will publish the new package to pypi
1818
"""
19-
__version__ = '3.2.6'
19+
__version__ = '3.2.7'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
'Framework :: Django :: 4.0',
3232
'Framework :: Django :: 4.1',
3333
'Framework :: Django :: 4.2',
34+
'Framework :: Django :: 5.0',
3435
'Framework :: Django CMS',
3536
'Framework :: Django CMS :: 3.6',
3637
'Framework :: Django CMS :: 3.7',

tests/requirements/django-3.2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-r base.txt
22
Django>=3.2,<4
3-
django-cms>=3.8
3+
django-cms>=3.8,<4

tests/requirements/django-4.1.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

tests/requirements/django-4.2.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-r base.txt
2+
Django>=4.2,<5
3+
django-cms>=3.11.1,<4

tests/requirements/django-5.0.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-r base.txt
2+
Django>=5,<5.1
3+
django-cms>=4

tests/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
},
1212
'LANGUAGE_CODE': 'en',
1313
'ALLOWED_HOSTS': ['*'],
14+
'CMS_CONFIRM_VERSION4': True,
1415
}
1516

1617

0 commit comments

Comments
 (0)