Skip to content

Commit 10b8805

Browse files
committed
test against python 3.14 beta 2, add 3.14 classifier., bump version
1 parent 03461fa commit 10b8805

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 1 deletion
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']
36+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-beta.2']
3737
django-version:
3838
- '3.2' # LTS April 2024
3939
- '4.2' # LTS April 2026
@@ -57,6 +57,14 @@ jobs:
5757
django-version: '5.0'
5858
- python-version: '3.9'
5959
django-version: '5.2'
60+
- python-version: '3.14.0-beta.2'
61+
django-version: '3.2'
62+
- python-version: '3.14.0-beta.2'
63+
django-version: '4.2'
64+
- python-version: '3.14.0-beta.2'
65+
django-version: '5.0'
66+
- python-version: '3.14.0-beta.2'
67+
django-version: '5.1'
6068
env:
6169
COVERAGE_FILE: py${{ matrix.python-version }}-linux-dj${{ matrix.django-version }}.coverage
6270
TEST_PYTHON_VERSION: ${{ matrix.python-version }}

doc/source/changelog.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,17 @@
44
Change Log
55
==========
66

7+
v3.2.0 (2025-04-30)
8+
===================
9+
10+
* Implemented `Support click 8.2 <https://github.com/django-commons/django-typer/issues/215>`_
711

8-
v3.1.1 (2024-04-30)
12+
v3.1.1 (2025-04-30)
913
===================
1014

1115
* Implemented `Support rich 14 <https://github.com/django-commons/django-typer/issues/213>`_
1216

13-
v3.1.0 (2024-04-02)
17+
v3.1.0 (2025-04-02)
1418
===================
1519

1620
* Fixed `Fish shell completion fails for any script named something other than "manage" <https://github.com/django-commons/django-typer/issues/207>`_
@@ -29,7 +33,7 @@ v3.1.0 (2024-04-02)
2933
* Implemented `Require tests to pass before release action runs. <https://github.com/django-commons/django-typer/issues/173>`_
3034

3135

32-
v3.0.0 (2024-02-16)
36+
v3.0.0 (2025-02-16)
3337
===================
3438

3539
* Implemented `Completer for media files. <https://github.com/django-commons/django-typer/issues/175>`_

pyproject.toml

Lines changed: 2 additions & 1 deletion
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.1.1"
7+
version = "3.2.0"
88
requires-python = ">=3.9,<4.0"
99
description = "Use Typer to define the CLI for your Django management commands."
1010
authors = [
@@ -49,6 +49,7 @@ classifiers = [
4949
"Programming Language :: Python :: 3.11",
5050
"Programming Language :: Python :: 3.12",
5151
"Programming Language :: Python :: 3.13",
52+
"Programming Language :: Python :: 3.14",
5253
"Topic :: Internet :: WWW/HTTP",
5354
"Topic :: Internet :: WWW/HTTP :: Site Management",
5455
"Topic :: Software Development :: Libraries",

src/django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
and keep a tight version lock on Typer.
3434
"""
3535

36-
VERSION = (3, 1, 1)
36+
VERSION = (3, 2, 0)
3737

3838
__title__ = "Django Typer"
3939
__version__ = ".".join(str(i) for i in VERSION)

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)