From e99d146ffd64b903bbc4a1fd50ac9cfef94152bc Mon Sep 17 00:00:00 2001 From: Jeremy Leung Date: Sat, 21 Oct 2023 22:20:06 -0400 Subject: [PATCH] pyproject.toml update for dropped networkx 3.2 support on python 3.8 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index acc2217..4a19e10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,8 @@ dependencies = [ "pylcs", "ray", "tqdm", - "networkx", + "networkx;python_version>='3.8'", + "networkx<3.2;python_version<='3.8'", "matplotlib", "timedinput", "importlib-resources;python_version<'3.10'"