From 49cbd3574147d6548a9807a93bf25a54249be582 Mon Sep 17 00:00:00 2001
From: Ben Clifford <benc@hawaga.org.uk>
Date: Sat, 21 Sep 2024 16:10:06 +0000
Subject: [PATCH 1/3] Remove ipyparallel dependency that might be unused, or at
 least is unclear how it is used, in context of
 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1082524

---
 test-requirements.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/test-requirements.txt b/test-requirements.txt
index acd670b5e9..6abf727ccd 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,5 +1,4 @@
 flake8==6.1.0
-ipyparallel
 pandas
 paramiko
 pytest>=7.4.0,<8

From 3cc72b79d2ce6657d91b71145a40794271a7b6e1 Mon Sep 17 00:00:00 2001
From: Ben Clifford <benc@hawaga.org.uk>
Date: Sat, 21 Sep 2024 16:58:59 +0000
Subject: [PATCH 2/3] remove two vestigial mypy module-ignores

---
 mypy.ini | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/mypy.ini b/mypy.ini
index 604fa4d07a..4b64a12de2 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -137,12 +137,6 @@ ignore_missing_imports = True
 [mypy-copy_reg.*]
 ignore_missing_imports = True
 
-[mypy-ipyparallel.*]
-ignore_missing_imports = True
-
-[mypy-ipython_genutils.*]
-ignore_missing_imports = True
-
 [mypy-cmreslogging.handlers.*]
 ignore_missing_imports = True
 

From 132d5b1dd55b1563274139897ec05880d94b42ff Mon Sep 17 00:00:00 2001
From: Ben Clifford <benc@hawaga.org.uk>
Date: Sat, 21 Sep 2024 17:00:27 +0000
Subject: [PATCH 3/3] remove ipyparallel from 'how to bodge dependencies' FAQ

---
 docs/faq.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/faq.rst b/docs/faq.rst
index a03287c378..ca4bd82bdb 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -209,7 +209,7 @@ For instance, with conda, follow this `cheatsheet <https://conda.io/docs/_downlo
    source activate <my_env>
 
    # Install packages:
-   conda install <ipyparallel, dill, boto3...>
+   conda install <dill, boto3...>
 
 
 How do I run code that uses Python2.X?