From 42ed93efd0ef15e9c9eb65b4c46b2efae77bdd8a Mon Sep 17 00:00:00 2001 From: YuanTingHsieh Date: Tue, 21 Jan 2025 14:19:04 -0800 Subject: [PATCH] Fix flower example requirements --- examples/hello-world/hello-flower/flwr-pt-tb/pyproject.toml | 2 +- examples/hello-world/hello-flower/flwr-pt/pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/hello-world/hello-flower/flwr-pt-tb/pyproject.toml b/examples/hello-world/hello-flower/flwr-pt-tb/pyproject.toml index 12b99c5c63..49b0f6c487 100644 --- a/examples/hello-world/hello-flower/flwr-pt-tb/pyproject.toml +++ b/examples/hello-world/hello-flower/flwr-pt-tb/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.11.0,<2.0", + "flwr[simulation]==1.11.0", "nvflare~=2.5.0rc", "torch==2.2.1", "torchvision==0.17.1", diff --git a/examples/hello-world/hello-flower/flwr-pt/pyproject.toml b/examples/hello-world/hello-flower/flwr-pt/pyproject.toml index 8624601c1b..d2a01b60fd 100644 --- a/examples/hello-world/hello-flower/flwr-pt/pyproject.toml +++ b/examples/hello-world/hello-flower/flwr-pt/pyproject.toml @@ -8,10 +8,11 @@ version = "1.0.0" description = "" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.11.0,<2.0", + "flwr[simulation]==1.11.0", "nvflare~=2.5.0rc", "torch==2.2.1", "torchvision==0.17.1", + "tensorboard" ] [tool.hatch.build.targets.wheel]