Browse Source

Drop pyflakes/pep8

Jelmer Vernooij 11 months ago
parent
commit
02d2864087
1 changed files with 0 additions and 11 deletions
  1. 0 11
      Makefile

+ 0 - 11
Makefile

@@ -1,6 +1,4 @@
 PYTHON = python3
-PYFLAKES = $(PYTHON) -m pyflakes
-PEP8 = pep8
 RUFF ?= $(PYTHON) -m ruff 
 SETUP = $(PYTHON) setup.py
 TESTRUNNER ?= unittest
@@ -53,18 +51,9 @@ clean::
 	$(SETUP) clean --all
 	rm -f dulwich/*.so
 
-flakes:
-	$(PYFLAKES) dulwich
-
-pep8:
-	$(PEP8) dulwich
-
 style:
 	$(RUFF) check .
 
-before-push: check
-	git diff origin/master | $(PEP8) --diff
-
 coverage:
 	$(COVERAGE) run -m unittest dulwich.tests.test_suite dulwich.contrib.test_suite