From 013b06bc3d509f39e7eb72743b8e1f3bf9ef2bd9 Mon Sep 17 00:00:00 2001 From: "Benjamin T. Vincent" Date: Fri, 14 Jun 2024 16:16:12 +0100 Subject: [PATCH] remove nbqa stuff from Makefile and pyproject.toml --- Makefile | 2 -- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c756aebe..352f8a09 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,6 @@ lint: check_lint: ruff check . ruff format --diff --check . - nbqa black --check . - nbqa ruff . interrogate . doctest: diff --git a/pyproject.toml b/pyproject.toml index 9e63c32a..369fda03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ docs = [ "statsmodels", "sphinxcontrib-bibtex", ] -lint = ["interrogate", "nbqa", "pre-commit", "ruff"] +lint = ["interrogate", "pre-commit", "ruff"] test = ["pytest", "pytest-cov"] [metadata]