Skip to content

Commit 0c9c73b

Browse files
committed
Run the CI with less combinations
1 parent 5e73cb4 commit 0c9c73b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
matrix:
1616
python-version:
1717
- '3.10'
18-
- '3.11'
1918
- '3.12'
2019
- '3.13'
2120

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Next version
2424
element with a ``prose-editor`` class. This makes the function more reusable
2525
for even more exotic customizations of the editor.
2626
- Added a "open in new window" checkbox to the link dialog.
27+
- Added integration testing using playwright.
28+
- Pruned the CI matrix a bit, stopped running tests using Python 3.11 and
29+
Django 5.0. Python 3.10 and Django 4.2 are still tested so we should be safe.
2730

2831

2932
0.10 (2024-12-17)

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{310,311,312}-dj{42,50}
3+
py{310,311,312}-dj{42}
44
py{312,313}-dj{51,52,main}
55

66
[testenv]
@@ -17,9 +17,8 @@ commands =
1717
coverage report -m
1818
deps =
1919
dj42: Django>=4.2,<5.0
20-
dj50: Django>=5.0,<5.1
2120
dj51: Django>=5.1,<5.2
22-
dj52: Django>=5.2a1,<6.0
21+
dj52: Django>=5.2rc1,<6.0
2322
djmain: https://github.com/django/django/archive/main.tar.gz
2423

2524
# The default testenv now includes Playwright

0 commit comments

Comments
 (0)