From ceb6e0f232bae1fa92a62a775a658d8ba31655b3 Mon Sep 17 00:00:00 2001 From: Adam Kells Date: Mon, 26 Jan 2026 13:16:42 +0000 Subject: [PATCH] Fix models package not included in wheel build The .gitignore pattern `models/` was causing hatchling to exclude healthchain/models/ and healthchain/interop/models/ from the package build. Add negation patterns to explicitly include these directories. This fixes ModuleNotFoundError when importing from healthchain.models in pip-installed versions of the package. Co-Authored-By: Claude Opus 4.5 --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index f5547d53..9ccae003 100644 --- a/.gitignore +++ b/.gitignore @@ -161,6 +161,8 @@ cython_debug/ output/ models/ +!healthchain/models/ +!healthchain/interop/models/ scrap/ .DS_Store .vscode/