11[tool .poetry ]
22name = " django-typer"
3- version = " 2.2.1 "
3+ version = " 2.2.2 "
44description = " Use Typer to define the CLI for your Django management commands."
55authors = [
" Brian Kohan <[email protected] >" ]
66license = " MIT"
@@ -29,6 +29,7 @@ classifiers = [
2929 " Programming Language :: Python :: 3.10" ,
3030 " Programming Language :: Python :: 3.11" ,
3131 " Programming Language :: Python :: 3.12" ,
32+ " Programming Language :: Python :: 3.13" ,
3233 " Topic :: Internet :: WWW/HTTP" ,
3334 " Topic :: Internet :: WWW/HTTP :: Site Management" ,
3435 " Topic :: Software Development :: Libraries" ,
@@ -48,7 +49,7 @@ click = "^8.1.0"
4849# typer's release history is full of breaking changes for minor versions
4950# given the reliance on some of its private internals we peg the typer
5051# version very strictly to bug fix releases for specific minor lines.
51- typer-slim = " >=0.12.4 ,<0.13.0"
52+ typer-slim = " >=0.12.5 ,<0.13.0"
5253
5354# this should track typer's rich dependency, so long as our console
5455# patches still work - so be sure to test on the low end of the range
@@ -61,21 +62,17 @@ typing-extensions = { version = ">=3.7.4.3", markers = "python_version < '3.10'"
6162
6263
6364[tool .poetry .group .dev .dependencies ]
64- ipdb = " ^0.13.13"
65- pytest-django = " ^4.7.0"
66- pytest-cov = " ^4.1.0"
67- Sphinx = [
68- { version = " ^7.2.0" , markers = " python_version > '3.8'" },
69- { version = " ^7.0.0" , markers = " python_version <= '3.8'" },
70- ]
71- sphinx-rtd-theme = " ^2.0.0"
72- mypy = " ^1.0"
73- doc8 = " ^1.1.1"
74- aiohttp = " ^3.9.1"
75- readme-renderer = {extras = [" md" ], version = " >=42,<44" }
76- sphinxcontrib-typer = {extras = [" html" , " pdf" , " png" ], version = " ^0.3.0" , markers =" python_version >= '3.9'" }
77- scikit-learn = " ^1.0.0"
78- pytest-env = " ^1.0.0"
65+ ipdb = " >=0.13.13"
66+ pytest-django = " >=4.8.0"
67+ pytest-cov = " >=5.0.0"
68+ Sphinx = " >=7.0"
69+ mypy = " >=1.0"
70+ doc8 = " >=1.1.1"
71+ aiohttp = " >=3.9.1"
72+ readme-renderer = {extras = [" md" ], version = " >=42" }
73+ sphinxcontrib-typer = {extras = [" html" , " pdf" , " png" ], version = " >=0.5.0" , markers =" python_version >= '3.9'" }
74+ scikit-learn = " >=1.0.0"
75+ pytest-env = " >=1.0.0"
7976numpy = [
8077 { version = " >=1.26" , markers = " python_version > '3.8'" },
8178 { version = " <=1.24" , markers = " python_version <= '3.8'" },
@@ -85,12 +82,12 @@ scipy = [
8582 { version = " <=1.10" , markers = " python_version <= '3.8'" },
8683]
8784django-stubs = " >=4.2.7"
88- pexpect = " ^ 4.9.0"
89- pyright = " ^ 1.1.357"
90- ruff = " ^ 0.4.1"
91- graphviz = " ^ 0.20.3"
92- sphinx-tabs = " ^ 3.4.5"
93- furo = " ^ 2024.7.18"
85+ pexpect = " >= 4.9.0"
86+ pyright = " >= 1.1.357"
87+ ruff = " >= 0.4.1"
88+ graphviz = " >= 0.20.3"
89+ sphinx-tabs = " >= 3.4.5"
90+ furo = " >= 2024.7.18"
9491
9592[tool .poetry .extras ]
9693rich = [" rich" ]
0 commit comments