1
1
[tool .poetry ]
2
2
name = " django-typer"
3
- version = " 2.2.1 "
3
+ version = " 2.2.2 "
4
4
description = " Use Typer to define the CLI for your Django management commands."
5
5
authors = [
" Brian Kohan <[email protected] >" ]
6
6
license = " MIT"
@@ -29,6 +29,7 @@ classifiers = [
29
29
" Programming Language :: Python :: 3.10" ,
30
30
" Programming Language :: Python :: 3.11" ,
31
31
" Programming Language :: Python :: 3.12" ,
32
+ " Programming Language :: Python :: 3.13" ,
32
33
" Topic :: Internet :: WWW/HTTP" ,
33
34
" Topic :: Internet :: WWW/HTTP :: Site Management" ,
34
35
" Topic :: Software Development :: Libraries" ,
@@ -48,7 +49,7 @@ click = "^8.1.0"
48
49
# typer's release history is full of breaking changes for minor versions
49
50
# given the reliance on some of its private internals we peg the typer
50
51
# 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"
52
53
53
54
# this should track typer's rich dependency, so long as our console
54
55
# 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'"
61
62
62
63
63
64
[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"
79
76
numpy = [
80
77
{ version = " >=1.26" , markers = " python_version > '3.8'" },
81
78
{ version = " <=1.24" , markers = " python_version <= '3.8'" },
@@ -85,12 +82,12 @@ scipy = [
85
82
{ version = " <=1.10" , markers = " python_version <= '3.8'" },
86
83
]
87
84
django-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"
94
91
95
92
[tool .poetry .extras ]
96
93
rich = [" rich" ]
0 commit comments