From 3863ecedb218672f5a4ca9d99c7f40c3d7113e22 Mon Sep 17 00:00:00 2001 From: Claudia Chu Date: Mon, 3 Jun 2024 17:43:45 -0400 Subject: [PATCH] setuptools version <60 for compatibility with python 3.12 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7eef355..9e3546e 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ 'pip', 'plotly>=5.15.0', 'scipy', - 'setuptools', + 'setuptools<60.0', # https://numpy.org/doc/stable/reference/distutils_status_migration.html 'frozendict', # fixes jupyter-dash bug when repeat calls to run_server hangs 'flask>=3.0.3',