Skip to content

Commit c3c2517

Browse files
author
Brian Kohan
committed
change typer dependency to typer-slim, fixes #47
1 parent 1381b7b commit c3c2517

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
from typing import ParamSpec
115115

116116

117-
VERSION = (1, 0, 9)
117+
VERSION = (1, 1, 0)
118118

119119
__title__ = "Django Typer"
120120
__version__ = ".".join(str(i) for i in VERSION)

doc/source/changelog.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
Change Log
33
==========
44

5-
v1.0.9
5+
v1.1.0
66
======
77

8+
* Fixed `typer 0.12.0 breaks django_typer 1.0.9 <https://github.com/bckohan/django-typer/issues/47>`_
9+
10+
11+
v1.0.9 (yanked)
12+
===============
13+
814
* Fixed `Support typer 0.12.0 <https://github.com/bckohan/django-typer/issues/46>`_
915

1016
v1.0.8

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-typer"
3-
version = "1.0.9"
3+
version = "1.1.0"
44
description = "Use Typer to define the CLI for your Django management commands."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"
@@ -47,7 +47,7 @@ click = "^8.1.0"
4747
# typer's release history is full of breaking changes for minor versions
4848
# given the reliance on some of its private internals we peg the typer
4949
# version very strictly to bug fix releases for specific minor lines.
50-
typer = ">=0.9.0,<0.13.0"
50+
typer-slim = ">=0.12.0,<0.13.0"
5151

5252
# this should track typer's rich dependency, so long as our console
5353
# patches still work - so be sure to test on the low end of the range
@@ -75,7 +75,7 @@ black = ">=23.12"
7575
doc8 = "^1.1.1"
7676
aiohttp = "^3.9.1"
7777
readme-renderer = {extras = ["md"], version = ">=42,<44"}
78-
sphinxcontrib-typer = {extras = ["html", "pdf", "png"], version = "^0.1.11"}
78+
sphinxcontrib-typer = {extras = ["html", "pdf", "png"], version = "^0.2.0"}
7979
scikit-learn = "^1.0.0"
8080
pytest-env = "^1.0.0"
8181
numpy = [

0 commit comments

Comments
 (0)