From 31c3dc2b4dc58b8134fe89677facdc7d1adbe712 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Thu, 16 Jul 2026 09:39:33 +0100 Subject: [PATCH] chore: delete dead pyautoheart/ compat shim (Pulse retirement leftover) The pyautoheart/ package was a 6-line 'from heart import *' shim created by the PyAutoPulse->PyAutoHeart rename (#18) and missed by the Phase-2 compat-surface retirement (#28). Zero importers workspace-wide; the distribution name in pyproject.toml is unchanged. Closes #80. Co-Authored-By: Claude Fable 5 --- pyautoheart/__init__.py | 6 ------ pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 pyautoheart/__init__.py diff --git a/pyautoheart/__init__.py b/pyautoheart/__init__.py deleted file mode 100644 index 18ba140..0000000 --- a/pyautoheart/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -"""PyAutoHeart compatibility package. - -The implementation lives in :mod:`heart`. -""" - -from heart import * # noqa: F401,F403 diff --git a/pyproject.toml b/pyproject.toml index 092be47..bf9b428 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ dev = [ ] [tool.setuptools.packages.find] -include = ["heart*", "pyautoheart*"] +include = ["heart*"] [tool.pytest.ini_options] testpaths = ["tests"]