From cd3c6e62fb169b22aaf8f25a840e15416f472d43 Mon Sep 17 00:00:00 2001 From: lelia <2418071+lelia@users.noreply.github.com> Date: Tue, 21 Jul 2026 18:42:06 -0400 Subject: [PATCH] fix: restore standard LICENSE filename (revert LICENSE.md rename from #79) PR #79 renamed LICENSE to LICENSE.md, which deviates from standard OSS naming conventions and broke references that point at the extensionless LICENSE file: - Dockerfile:61 COPY ... LICENSE ... (Docker build failed, file missing) - pyproject.toml license = {file = "LICENSE"} (packaging failed) Renames LICENSE.md back to LICENSE and drops the now-unnecessary !LICENSE.md exception from .gitignore. Both references above resolve correctly again with no further changes. Signed-off-by: lelia <2418071+lelia@users.noreply.github.com> --- .gitignore | 1 - LICENSE.md => LICENSE | 0 2 files changed, 1 deletion(-) rename LICENSE.md => LICENSE (100%) diff --git a/.gitignore b/.gitignore index 0cf62b9..c234ce8 100644 --- a/.gitignore +++ b/.gitignore @@ -90,7 +90,6 @@ logs/ !docs/*.md !tests/README.md !.github/PULL_REQUEST_TEMPLATE.md -!LICENSE.md # Project-specific (local scripts and test files) test/ diff --git a/LICENSE.md b/LICENSE similarity index 100% rename from LICENSE.md rename to LICENSE