diff --git a/pyproject.toml b/pyproject.toml index d74b0b4..8d2f993 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ requires-python = ">=3.8" dependencies = [ "django>=3.2", "certifi>=2023.7.22,<2025.0.0", - "django-typer>=1.1.2", + "django-typer>=2.1.2", ] [project.optional-dependencies] django-extensions = ["django-extensions>=3.2", "werkzeug>=3.0"] diff --git a/src/django_tailwind_cli/management/commands/tailwind.py b/src/django_tailwind_cli/management/commands/tailwind.py index 4e6bde7..69e202d 100644 --- a/src/django_tailwind_cli/management/commands/tailwind.py +++ b/src/django_tailwind_cli/management/commands/tailwind.py @@ -16,7 +16,7 @@ from django.conf import settings from django.core.management.base import CommandError from django.template.utils import get_app_template_dirs -from django_typer import TyperCommand, command, initialize +from django_typer.management import TyperCommand, command, initialize from django_tailwind_cli.utils import Config