From 33367853d808e44de3ce326bb2b4c52b777f3694 Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Tue, 12 Nov 2024 13:55:22 -0500 Subject: [PATCH] Support an old import path (#1807) --- backend/src/hatchling/licenses/__init__.py | 0 backend/src/hatchling/licenses/supported.py | 1 + docs/history/hatchling.md | 4 ++++ 3 files changed, 5 insertions(+) create mode 100644 backend/src/hatchling/licenses/__init__.py create mode 100644 backend/src/hatchling/licenses/supported.py diff --git a/backend/src/hatchling/licenses/__init__.py b/backend/src/hatchling/licenses/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/backend/src/hatchling/licenses/supported.py b/backend/src/hatchling/licenses/supported.py new file mode 100644 index 000000000..5e83d22bd --- /dev/null +++ b/backend/src/hatchling/licenses/supported.py @@ -0,0 +1 @@ +from packaging.licenses._spdx import VERSION # noqa: F401, PLC2701 diff --git a/docs/history/hatchling.md b/docs/history/hatchling.md index e38ce83f4..d150044c4 100644 --- a/docs/history/hatchling.md +++ b/docs/history/hatchling.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased +***Fixed:*** + +- Support an old import path that is still used by some consumers like Hatch + ## [1.26.2](https://github.com/pypa/hatch/releases/tag/hatchling-v1.26.2) - 2024-11-12 ## {: #hatchling-v1.26.2 } ***Fixed:***