Skip to content

Commit ab74b10

Browse files
committed
fix #4
1 parent 707b508 commit ab74b10

File tree

6 files changed

+48
-43
lines changed

6 files changed

+48
-43
lines changed

django_routines/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from django.core.exceptions import ImproperlyConfigured
2222
from django.utils.functional import Promise
2323

24-
VERSION = (1, 0, 1)
24+
VERSION = (1, 0, 2)
2525

2626
__title__ = "Django Routines"
2727
__version__ = ".".join(str(i) for i in VERSION)

django_routines/management/commands/routine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from django.core.management import CommandError, call_command
77
from django.core.management.base import BaseCommand
88
from django.utils.translation import gettext as _
9-
from django_typer import TyperCommand, get_command, initialize
9+
from django_typer.management import TyperCommand, get_command, initialize
1010
from django_typer.types import Verbosity
1111

1212
from django_routines import (

doc/source/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
==========
44

5+
v1.0.2
6+
======
7+
8+
* `Update import deprecation for django-typer 2.1+ <https://github.com/bckohan/django-routines/issues/4>`_
9+
510
v1.0.1
611
======
712

doc/source/refs.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
.. _django-typer: https://pypi.python.org/pypi/django-typer
88
.. _django_typer: https://github.com/bckohan/django-typer
99
.. _DRY: https://en.wikipedia.org/wiki/Don%27t_repeat_yourself
10-
.. _TyperCommand: https://django-typer.readthedocs.io/en/latest/reference.html#django_typer.TyperCommand
10+
.. _TyperCommand: https://django-typer.readthedocs.io/en/latest/reference.html#django_typer.management.TyperCommand
1111
.. _django-split-settings: https://pypi.org/project/django-split-settings/
1212
.. _call_command: https://docs.djangoproject.com/en/stable/ref/django-admin/#django.core.management.call_command

poetry.lock

+38-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-routines"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "Define named groups of management commands in Django settings files for batched execution."
55
authors = ["Brian Kohan <bckohan@gmail.com>"]
66
license = "MIT"
@@ -42,7 +42,7 @@ exclude = ["tests"]
4242
[tool.poetry.dependencies]
4343
python = ">=3.8,<4.0"
4444
Django = ">=3.2,<6.0"
45-
django-typer = "^2.0.2"
45+
django-typer = "^2.1.0"
4646

4747
# this should track typer's rich dependency, so long as our console
4848
# patches still work - so be sure to test on the low end of the range

0 commit comments

Comments
 (0)