From: Bob Halley Date: Sat, 6 Dec 2025 18:05:52 +0000 (-0800) Subject: remove mypy as librt build failure breaks CI on 3.15dev and pypy X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca50a86edfc295834b1948a2723360d28e8a9302;p=thirdparty%2Fdnspython.git remove mypy as librt build failure breaks CI on 3.15dev and pypy --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80e2e7f0..7aa4c395 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,11 +51,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install cryptography trio idna httpx h2 aioquic mypy pytest ruff pyright + python -m pip install cryptography trio idna httpx h2 aioquic pytest ruff pyright ty - name: Typecheck run: | - python -m mypy --disallow-incomplete-defs dns pyright dns + ty check dns - name: Lint run: | ruff check dns diff --git a/pyproject.toml b/pyproject.toml index 2ed8c3bb..2bb3de4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,6 @@ dev = [ "black>=25.1.0", "coverage>=7.0", "hypercorn>=0.17.0", - "mypy>=1.17", "pyright>=1.1.405", "pytest>=8.4", "pytest-cov>=6.2.0",