From bb85f09215b358b0f296632fc39f511234c8f786 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Thu, 2 Jan 2025 09:21:35 -0500 Subject: [PATCH] Remove checkrot make rule This removes a checkrot make rule that doesn't apply anymore now that we've moved dev dependencies into pyproject.toml. --- Makefile | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index b412e2e..bf1b7fe 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ DEFAULT_GOAL := help -PROJECT=siggen .PHONY: help help: @@ -9,10 +8,10 @@ help: .PHONY: clean clean: ## Clean build artifacts - rm -rf build dist ${PROJECT}.egg-info .tox .pytest-cache + rm -rf build dist siggen.egg-info .tox .pytest-cache rm -rf docs/_build/* - find ${PROJECT}/ tests/ -name __pycache__ | xargs rm -rf - find ${PROJECT}/ tests/ -name '*.pyc' | xargs rm -rf + find siggen/ tests/ -name __pycache__ | xargs rm -rf + find siggen/ tests/ -name '*.pyc' | xargs rm -rf .PHONY: format format: ## Format Python files @@ -25,11 +24,3 @@ lint: ## Lint files .PHONY: test test: ## Run tests tox - -.PHONY: checkrot -checkrot: ## Check package rot for dev dependencies - python -m venv ./tmpvenv/ - ./tmpvenv/bin/pip install -U pip - ./tmpvenv/bin/pip install -r requirements-dev.txt - ./tmpvenv/bin/pip list -o - rm -rf ./tmpvenv/