Skip to content

Commit ed71f06

Browse files
committed
fix python requires version
1 parent 1e32d6e commit ed71f06

File tree

2 files changed

+763
-47
lines changed

2 files changed

+763
-47
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "django-typer"
77
version = "3.1.0"
8-
requires-python = "==3.13.2"
8+
requires-python = ">=3.9,<4.0"
99
description = "Use Typer to define the CLI for your Django management commands."
1010
authors = [
1111
{name = "Brian Kohan", email = "[email protected]"},
@@ -17,7 +17,7 @@ repository = "https://github.com/django-commons/django-typer"
1717
homepage = "https://django-typer.readthedocs.io"
1818
keywords = ["django", "CLI", "management", "Typer", "commands"]
1919
dependencies = [
20-
"django>=3.2,<6.0",
20+
"Django>=3.2,<6.0",
2121
"click>=8.1.8,<8.2",
2222
# typer's release history is full of breaking changes for minor versions
2323
# given the reliance on some of its private internals we peg the typer

0 commit comments

Comments
 (0)