From 17d9630fa802580caa31f4e96e40f1c844948095 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 12 Aug 2025 16:38:53 -0400 Subject: [PATCH] cicd: remove pyright/mypy stuff --- .pre-commit-config.yaml | 7 ------- pyproject.toml | 5 ----- 2 files changed, 12 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 581fa24..f60689b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,11 +1,4 @@ repos: -- repo: local - hooks: - - id: pyright - name: pyright - entry: pyright - language: system - types: [python] - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.4.4 hooks: diff --git a/pyproject.toml b/pyproject.toml index 79a7352..928791a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,9 +22,7 @@ dependencies = ["coloredlogs ~= 15.0", "pyyaml ~= 6.0"] dev = [ "build ~= 0.8", "ipython ~= 8.4", - "mypy-extensions ~= 1.0", "pre-commit ~= 3.4", - "pyright~=1.1", "ruff == 0.4.4", ] tests = [ @@ -104,9 +102,6 @@ exclude_lines = [ "if __name__ == .__main__.:", ] -[tool.pyright] -include = ["src", "tests"] - [tool.ruff] src = ["src", "tests"] line-length = 100