From 80b1f77aa78f992e95b16fefe10c6beff84ee858 Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Thu, 19 Feb 2026 10:35:59 -0500 Subject: [PATCH] Add a `py.typed` file, to make types available downstream This will not change any behavior of this package, but it is required for consuming projects to read any existing type information here. This file is required to exist and should be empty. There's no alternative mechanism. See: https://blog.whtsky.me/tech/2021/dont-forget-py.typed-for-your-typed-python-package/ This follows #2227. --- debug_toolbar/py.typed | 0 docs/changes.rst | 1 + 2 files changed, 1 insertion(+) create mode 100644 debug_toolbar/py.typed diff --git a/debug_toolbar/py.typed b/debug_toolbar/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/docs/changes.rst b/docs/changes.rst index 118fbde7c..6a0c3683f 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -11,6 +11,7 @@ Pending * Standardize use of time/duration units and labels across panels. * Added translations for Lithuanian, Turkish and Uzbek. * Update the translations. +* Expose a ``py.typed`` marker file. 6.2.0 (2026-01-20) ------------------