Skip to content

Commit

Permalink
Revert "Prune the CI"
Browse files Browse the repository at this point in the history
This reverts commit ba773a0.
  • Loading branch information
matthiask committed Sep 26, 2024
1 parent e0af539 commit 10a23eb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ Next version
attribute; recommended values include 0 (the default), 1 (open one section)
and -1 (close one section). Those sections are collapsed and moved as one
unit during editing.
- Dropped compatibility with Python < 3.10.
- Dropped Django 4.1 from the CI. Django 3.2 is still there.


7.0 (2024-05-31)
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = { text = "BSD-3-Clause" }
authors = [
{ name = "Matthias Kestenholz", email = "[email protected]" },
]
requires-python = ">=3.10"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand All @@ -22,6 +22,8 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down Expand Up @@ -50,7 +52,7 @@ include = [
path = "content_editor/__init__.py"

[tool.ruff]
target-version = "py310"
target-version = "py38"

fix = true
show-fixes = true
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{310}-dj{32}
py{310,311}-dj{32,42,main}
py{38,39,310}-dj{32,41}
py{310,311}-dj{32,41,42,main}
py{312}-dj{42,50,51,main}
docs

Expand All @@ -13,6 +13,7 @@ commands =
coverage report -m
deps =
dj32: Django>=3.2,<4.0
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
dj50: Django>=5.0,<5.1
dj51: Django>=5.1,<5.2
Expand Down

0 comments on commit 10a23eb

Please sign in to comment.