Skip to content

Commit

Permalink
Remove checkrot make rule
Browse files Browse the repository at this point in the history
This removes a checkrot make rule that doesn't apply anymore now that
we've moved dev dependencies into pyproject.toml.
  • Loading branch information
willkg committed Jan 6, 2025
1 parent 0229d42 commit bb85f09
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
DEFAULT_GOAL := help
PROJECT=siggen

.PHONY: help
help:
Expand All @@ -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
Expand All @@ -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/

0 comments on commit bb85f09

Please sign in to comment.