Skip to content

Commit

Permalink
Drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Sep 17, 2023
1 parent fa32e0c commit 105a208
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Expand Up @@ -14,7 +14,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -6,6 +6,12 @@ Next version
============

- Fixed ``pyproject.toml`` so that data files are actually included.
- Dropped compatibility with Python 3.8.
- Added utilities for role-based permissions. The idea is to allow a less
manual way to specify permissions for groups of users, e.g. content managers
which should automatically have access to all models in a list of apps
without having to manually update the list of permissions in the Django
administration interface.


0.15 (2023-07-07)
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Expand Up @@ -12,7 +12,7 @@ license = {text = "MIT"}
authors = [
{ name = "Matthias Kestenholz", email = "mk@feinheit.ch" },
]
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand All @@ -21,7 +21,6 @@ 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",
Expand Down Expand Up @@ -91,7 +90,7 @@ extend-ignore = [
]
fix = true
show-fixes = true
target-version = "py38"
target-version = "py39"

[tool.ruff.isort]
combine-as-imports = true
Expand Down

0 comments on commit 105a208

Please sign in to comment.