From 369887ae404276b76c5a4b0c7d65b4b05b3931aa Mon Sep 17 00:00:00 2001 From: Yury Bayda Date: Sun, 2 Aug 2026 19:27:53 -0700 Subject: [PATCH] chore: remove legacy main entry point --- .github/workflows/main.yml | 3 --- Makefile | 4 ---- README.md | 17 ----------------- main.py | 4 ---- 4 files changed, 28 deletions(-) delete mode 100755 main.py diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7343182..dd59feb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,8 +43,5 @@ jobs: version: "latest" prune-cache: true - - name: Run main - run: make run - - name: Test run: make test diff --git a/Makefile b/Makefile index 666a092..8672698 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,6 @@ help: ## Show this help message /^[a-zA-Z_-]+:.*##/ {printf " $(COLOR_CYAN)%-20s$(COLOR_RESET) %s\n", $$1, $$2}' \ $(MAKEFILE_LIST) -.PHONY: run -run: ## Run the sample entry point - uv run python main.py - .PHONY: test test: ## Run tests uv run pytest test_*.py diff --git a/README.md b/README.md index 0c967af..1c91858 100644 --- a/README.md +++ b/README.md @@ -167,22 +167,6 @@ uv run pytest Continue when the test run passes. -## Run the sample entry point - -Use Make when it is installed: - -```console -make run -``` - -Otherwise, run `main.py` through `uv` directly: - -```console -uv run python main.py -``` - -The command prints `Hello World!`. - ## Make command reference Make is optional. Run `make` or `make help` to list these commands in the terminal. @@ -191,7 +175,6 @@ Make is optional. Run `make` or `make help` to list these commands in the termin | ------------------- | --------------------------------------- | | `make all` | Run the test suite | | `make help` | Show the command reference | -| `make run` | Run the sample entry point | | `make test` | Run the test suite | | `make format` | Format tracked Python files | | `make format-check` | Check formatting without changing files | diff --git a/main.py b/main.py deleted file mode 100755 index 8159ff0..0000000 --- a/main.py +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env python3 - -if __name__ == "__main__": - print("Hello World!")