From 985a3c39546aa41853faafe6964a164adb679488 Mon Sep 17 00:00:00 2001 From: Joren Hammudoglu Date: Thu, 3 Jul 2025 13:19:50 +0200 Subject: [PATCH] Add `scipy-stubs` as dev dependency I noticed that `scipy` is used in `dedupe/clustering.py` and the tests. To help improve type-checking (i.e. mypy) and IDE support, [scipy-stubs](https://github.com/scipy/scipy-stubs) can help (a lot). It doesn't require `scipy` (it's an optional dep), so the runtime impact this has on CI will be minimal :) --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 9a88ab05..44262f53 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,3 +10,4 @@ pytest-cov virtualenv isort pre-commit +scipy-stubs; python_version>='3.10'