From 80bbe8f5469654032f8f2c322824f14fa942c050 Mon Sep 17 00:00:00 2001 From: Will Date: Fri, 28 Apr 2023 11:23:36 -0400 Subject: [PATCH] Pin IPython to 8.12.0 to ensure Python 3.8 support IPython published 8.13.0 which deprecated Python 3.8 support. For continued Python 3.8 support IPython needs to be pinned to the previous version. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bbe3823..d8fe1ca 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ 'attrs', 'bokeh >= 0.12.0', 'intervaltree >= 2.1.0', - 'IPython', + 'IPython == 8.12.0', 'librosa >= 0.6.2', 'numpy', 'pandas >= 0.18.1',