Skip to content

Commit ba773a0

Browse files
committed
Prune the CI
1 parent 8e50d8d commit ba773a0

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Next version
1616
attribute; recommended values include 0 (the default), 1 (open one section)
1717
and -1 (close one section). Those sections are collapsed and moved as one
1818
unit during editing.
19+
- Dropped compatibility with Python < 3.10.
20+
- Dropped Django 4.1 from the CI. Django 3.2 is still there.
1921

2022

2123
7.0 (2024-05-31)

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = { text = "BSD-3-Clause" }
1212
authors = [
1313
{ name = "Matthias Kestenholz", email = "[email protected]" },
1414
]
15-
requires-python = ">=3.8"
15+
requires-python = ">=3.10"
1616
classifiers = [
1717
"Development Status :: 5 - Production/Stable",
1818
"Environment :: Web Environment",
@@ -22,8 +22,6 @@ classifiers = [
2222
"Operating System :: OS Independent",
2323
"Programming Language :: Python",
2424
"Programming Language :: Python :: 3 :: Only",
25-
"Programming Language :: Python :: 3.8",
26-
"Programming Language :: Python :: 3.9",
2725
"Programming Language :: Python :: 3.10",
2826
"Programming Language :: Python :: 3.11",
2927
"Programming Language :: Python :: 3.12",
@@ -52,7 +50,7 @@ include = [
5250
path = "content_editor/__init__.py"
5351

5452
[tool.ruff]
55-
target-version = "py38"
53+
target-version = "py310"
5654

5755
fix = true
5856
show-fixes = true

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{38,39,310}-dj{32,41}
4-
py{310,311}-dj{32,41,42,main}
3+
py{310}-dj{32}
4+
py{310,311}-dj{32,42,main}
55
py{312}-dj{42,50,51,main}
66
docs
77

@@ -13,7 +13,6 @@ commands =
1313
coverage report -m
1414
deps =
1515
dj32: Django>=3.2,<4.0
16-
dj41: Django>=4.1,<4.2
1716
dj42: Django>=4.2,<5.0
1817
dj50: Django>=5.0,<5.1
1918
dj51: Django>=5.1,<5.2

0 commit comments

Comments
 (0)