Skip to content

Commit 94df5d3

Browse files
authored
chore: dropped python 3.9 support (#1610)
1 parent cfea867 commit 94df5d3

File tree

3 files changed

+49
-77
lines changed

3 files changed

+49
-77
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python-version:
21-
- 3.9
2221
- "3.10"
2322
- "3.11"
2423
- "3.12"

poetry.lock

Lines changed: 46 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-unfold"
3-
version = "0.67.1"
3+
version = "0.67.0"
44
description = "Modern Django admin theme for seamless interface development"
55
license = "MIT"
66
readme = "README.md"
@@ -11,7 +11,6 @@ packages = [{ include = "unfold", from = "src" }]
1111
keywords = ["django", "admin", "tailwind", "theme"]
1212
classifiers = [
1313
"Programming Language :: Python",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",
@@ -23,7 +22,7 @@ classifiers = [
2322
]
2423

2524
[tool.poetry.dependencies]
26-
python = ">=3.9,<4.0"
25+
python = ">=3.10,<4.0"
2726
django = ">=4.2"
2827

2928
[tool.poetry.group.test.dependencies]
@@ -87,7 +86,7 @@ legacy_tox_ini = """
8786
[tox]
8887
isolated_build = true
8988
envlist =
90-
python{39,310,311,312,313}-django{42,50,51,52}
89+
python{310,311,312,313}-django{42,50,51,52}
9190
9291
[testenv]
9392
skip_install = true

0 commit comments

Comments
 (0)