From b2f1a6f64ef420426de219243aac5eaee909bec0 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Wed, 21 Jun 2023 12:51:59 -0600 Subject: [PATCH] Fix version issue for ray dependency ray v2.3.1 lists tensorboardX as a dependency. tensorboardX upgraded to v2.6.1 which lists protobuf >v4.2 as a dependency. That breaks ray's import of tensorflow v2.10 which we're currently using --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 3741be8..9614feb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,7 @@ packages = find: install_requires = networkx==3.0 ray[tune,rllib]==2.3.1 + tensorboardX==2.6.0 numpy<1.24.0 tqdm==4.64.1 matplotlib