Skip to content

Commit 4578ca1

Browse files
committed
support typer 0.18-0.19 and click 8.3 #232
1 parent 84f7239 commit 4578ca1

File tree

5 files changed

+341
-295
lines changed

5 files changed

+341
-295
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
actions: write
3434
strategy:
3535
matrix:
36-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.2']
36+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.3']
3737
django-version:
3838
- '3.2' # LTS April 2024
3939
- '4.2' # LTS April 2026
@@ -57,13 +57,13 @@ jobs:
5757
django-version: '5.0'
5858
- python-version: '3.9'
5959
django-version: '5.2'
60-
- python-version: '3.14.0-rc.2'
60+
- python-version: '3.14.0-rc.3'
6161
django-version: '3.2'
62-
- python-version: '3.14.0-rc.2'
62+
- python-version: '3.14.0-rc.3'
6363
django-version: '4.2'
64-
- python-version: '3.14.0-rc.2'
64+
- python-version: '3.14.0-rc.3'
6565
django-version: '5.0'
66-
- python-version: '3.14.0-rc.2'
66+
- python-version: '3.14.0-rc.3'
6767
django-version: '5.1'
6868
env:
6969
COVERAGE_FILE: py${{ matrix.python-version }}-linux-dj${{ matrix.django-version }}.coverage

doc/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Change Log
55
==========
66

7+
v3.3.1 (2025-09-22)
8+
===================
9+
10+
* Implemented `Support typer 0.18-0.19 and click 8.3 <https://github.com/django-commons/django-typer/issues/232>`_
11+
712
v3.3.0 (2025-08-31)
813
===================
914

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "django-typer"
7-
version = "3.3.0"
7+
version = "3.3.1"
88
requires-python = ">=3.9,<4.0"
99
description = "Use Typer to define the CLI for your Django management commands."
1010
authors = [
@@ -18,11 +18,11 @@ homepage = "https://django-typer.readthedocs.io"
1818
keywords = ["django", "CLI", "management", "Typer", "commands"]
1919
dependencies = [
2020
"Django>=3.2,<6.0",
21-
"click>=8.1.8,<8.3",
21+
"click>=8.1.8,<8.4",
2222
# typer's release history is full of breaking changes for minor versions
2323
# given the reliance on some of its private internals we peg the typer
2424
# version very strictly to bug fix releases for specific minor lines.
25-
"typer-slim>=0.17.0,<0.18.0",
25+
"typer-slim>=0.18.0,<0.20.0",
2626
"shellingham>=1.5.4,<2.0",
2727
# we need this on 3.9 for ParamSpec
2828
"typing-extensions>=3.7.4.3; python_version < '3.10'",

src/django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
and keep a tight version lock on Typer.
4141
"""
4242

43-
VERSION = (3, 3, 0)
43+
VERSION = (3, 3, 1)
4444

4545
__title__ = "Django Typer"
4646
__version__ = ".".join(str(i) for i in VERSION)

0 commit comments

Comments
 (0)