From 71c3a85e05dd7191697a768f3f9efd4c6c9ddc47 Mon Sep 17 00:00:00 2001 From: takunomi-build-bot Date: Sun, 11 May 2025 10:43:45 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Repository=20layout=20updated=20?= =?UTF-8?q?to=20latest=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager) --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 491f959..330fa53 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,6 @@ The tool uses environment variables for sensitive information: PACKAGE_DESCRIPTION_SHORT = """ A code automation tool that integrates Gitea with Aider to automatically solve issues.""".strip() - def parse_version_file(text: str) -> str: match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text) if match is None: @@ -92,7 +91,6 @@ def parse_version_file(text: str) -> str: raise Exception(msg) return match.group(2) - with open(PACKAGE_NAME + '/_version.py') as f: version = parse_version_file(f.read())