From 4f5e2cb0d71468d4cbc575d5b5ad7ace3418f80b Mon Sep 17 00:00:00 2001 From: Javier Date: Mon, 16 Dec 2024 21:06:41 +0000 Subject: [PATCH] fix(examples) Update pinned `numpy` in `quickstart-pandas` and `vertical-fl` examples (#4725) --- examples/quickstart-pandas/pyproject.toml | 2 +- examples/vertical-fl/pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/quickstart-pandas/pyproject.toml b/examples/quickstart-pandas/pyproject.toml index 986ae9abd0ac..8e3d8e46ecad 100644 --- a/examples/quickstart-pandas/pyproject.toml +++ b/examples/quickstart-pandas/pyproject.toml @@ -14,7 +14,7 @@ authors = [ dependencies = [ "flwr[simulation]>=1.13.1", "flwr-datasets[vision]>=0.3.0", - "numpy==1.24.4", + "numpy>=1.26.0", "pandas==2.0.0", ] diff --git a/examples/vertical-fl/pyproject.toml b/examples/vertical-fl/pyproject.toml index 4efa726eb530..a1d0a70afe61 100644 --- a/examples/vertical-fl/pyproject.toml +++ b/examples/vertical-fl/pyproject.toml @@ -11,6 +11,7 @@ dependencies = [ "flwr[simulation]>=1.13.1", "flwr-datasets>=0.3.0", "pandas==2.0.3", + "numpy>=1.26.0", "scikit-learn==1.3.2", "torch==2.1.0", ]