Skip to content

Commit

Permalink
Drop python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
craigds committed Jan 22, 2025
1 parent 6c223b9 commit 0e8ea6e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.12"
- "3.13"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ class FelineAdmin(TypedModelAdmin):
## Requirements

* Django 4.2+
* Python 3.8+
* Python 3.9+
13 changes: 4 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ name = "django-typed-models"
description = "Sane single table model inheritance for Django"
readme = "README.md"
dynamic = ["version"]
authors = [
{ name = "Craig de Stigter", email = "[email protected]" },
]
authors = [{ name = "Craig de Stigter", email = "[email protected]" }]
license = "BSD-3-Clause"
license-files = { paths = ["LICENSE.txt"] }
classifiers = [
"Environment :: Web Environment",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
Expand All @@ -24,18 +22,15 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
dependencies = [
"django_stubs_ext",
]
requires-python = ">=3.8"
dependencies = ["django_stubs_ext"]
requires-python = ">=3.9"

[project.urls]
Homepage = "http://github.com/craigds/django-typed-models"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[tox]
envlist = {py38,py310}-{dj42}
envlist = {py39,py310}-{dj42}
{py310,py311,py312}-{dj50}
{py310,py311,py312,py313}-{dj51}
mypy
Expand Down
2 changes: 1 addition & 1 deletion typedmodels/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.15.0"
__version__ = "0.15.0b1"

0 comments on commit 0e8ea6e

Please sign in to comment.