From f53f8d2b524f61be07310ee30f39f9f39dee7177 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Feb 2026 02:25:24 +0000 Subject: [PATCH 1/2] Initial plan From bc291d71a21b5c7eafa1b50f020c4c8877c50903 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Feb 2026 02:26:04 +0000 Subject: [PATCH 2/2] Remove unnecessary file open in build.py, use pyjapt.__version__ directly Co-authored-by: alejandroklever <45394625+alejandroklever@users.noreply.github.com> --- build.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.py b/build.py index 95ecc37..3e4c38f 100644 --- a/build.py +++ b/build.py @@ -3,8 +3,7 @@ import pyjapt -with open("pyjapt/__init__.py", "r") as f: - version = pyjapt.__version__ +version = pyjapt.__version__ with open("pyproject.toml", "r") as f: s = f.read()