From ae3492cc48cafdd449e4dd31fab4b00cbde8c90b Mon Sep 17 00:00:00 2001 From: jafermarq Date: Mon, 17 Feb 2025 17:11:38 +0000 Subject: [PATCH] more examples --- examples/advanced-pytorch/pyproject.toml | 2 +- examples/advanced-tensorflow/pyproject.toml | 2 +- examples/app-pytorch/pyproject.toml | 2 +- examples/custom-metrics/pyproject.toml | 2 +- examples/embedded-devices/pyproject.toml | 2 +- examples/federated-kaplan-meier-fitter/pyproject.toml | 2 +- examples/fl-dp-sa/pyproject.toml | 2 +- examples/fl-tabular/pyproject.toml | 2 +- examples/flower-authentication/pyproject.toml | 2 +- .../my-awesome-app/pyproject.toml | 2 +- examples/flowertune-llm/pyproject.toml | 2 +- examples/quickstart-lerobot/pyproject.toml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/advanced-pytorch/pyproject.toml b/examples/advanced-pytorch/pyproject.toml index 436c4232810e..74b54ec589d8 100644 --- a/examples/advanced-pytorch/pyproject.toml +++ b/examples/advanced-pytorch/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "Federated Learning with PyTorch and Flower (Advanced Example)" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.1", + "flwr[simulation]>=1.15.2", "flwr-datasets[vision]>=0.5.0", "torch==2.5.1", "torchvision==0.20.1", diff --git a/examples/advanced-tensorflow/pyproject.toml b/examples/advanced-tensorflow/pyproject.toml index dde67de7bf6c..7b7abc47d030 100644 --- a/examples/advanced-tensorflow/pyproject.toml +++ b/examples/advanced-tensorflow/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "Federated Learning with Tensorflow/Keras and Flower (Advanced Example)" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.1", + "flwr[simulation]>=1.15.2", "flwr-datasets[vision]>=0.5.0", "tensorflow-cpu>=2.9.1, != 2.11.1 ; platform_machine == \"x86_64\"", "tensorflow-macos>=2.9.1, != 2.11.1 ; sys_platform == \"darwin\" and platform_machine == \"arm64\"", diff --git a/examples/app-pytorch/pyproject.toml b/examples/app-pytorch/pyproject.toml index eb9147365d62..f5bf237d3a27 100644 --- a/examples/app-pytorch/pyproject.toml +++ b/examples/app-pytorch/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.1", + "flwr[simulation]>=1.15.2", "flwr-datasets[vision]>=0.5.0", "torch==2.5.1", "torchvision==0.20.1", diff --git a/examples/custom-metrics/pyproject.toml b/examples/custom-metrics/pyproject.toml index 18de68cbd825..7badbfe5c019 100644 --- a/examples/custom-metrics/pyproject.toml +++ b/examples/custom-metrics/pyproject.toml @@ -12,7 +12,7 @@ version = "1.0.0" description = "Federated Learning with Flower and Custom Metrics" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.1", + "flwr[simulation]>=1.15.2", "flwr-datasets[vision]>=0.5.0", "scikit-learn>=1.6.0", "tensorflow>=2.12.1; (platform_machine == \"x86_64\" or platform_machine == \"aarch64\")", diff --git a/examples/embedded-devices/pyproject.toml b/examples/embedded-devices/pyproject.toml index fb37a17dd36c..9cd6a345e945 100644 --- a/examples/embedded-devices/pyproject.toml +++ b/examples/embedded-devices/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "Federated AI with Embedded Devices using Flower" license = "Apache-2.0" dependencies = [ - "flwr>=1.15.0", + "flwr>=1.15.2", "flwr-datasets[vision]>=0.5.0", "torch==2.5.1", "torchvision==0.20.1", diff --git a/examples/federated-kaplan-meier-fitter/pyproject.toml b/examples/federated-kaplan-meier-fitter/pyproject.toml index bfeb304a8cca..f093b26f35e5 100644 --- a/examples/federated-kaplan-meier-fitter/pyproject.toml +++ b/examples/federated-kaplan-meier-fitter/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "Federated Kaplan Meier Fitter with Flower" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.1", + "flwr[simulation]>=1.15.2", "flwr-datasets>=0.5.0", "numpy>=1.23.2", "pandas>=2.0.0", diff --git a/examples/fl-dp-sa/pyproject.toml b/examples/fl-dp-sa/pyproject.toml index d626f75f0643..85b9155e37d9 100644 --- a/examples/fl-dp-sa/pyproject.toml +++ b/examples/fl-dp-sa/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "Central Differential Privacy and Secure Aggregation in Flower" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.1", + "flwr[simulation]>=1.15.2", "flwr-datasets[vision]>=0.5.0", "torch==2.5.1", "torchvision==0.20.1", diff --git a/examples/fl-tabular/pyproject.toml b/examples/fl-tabular/pyproject.toml index 055dc2a212d5..3c4ad7dc91ec 100644 --- a/examples/fl-tabular/pyproject.toml +++ b/examples/fl-tabular/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "Adult Census Income Tabular Dataset and Federated Learning in Flower" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.1", + "flwr[simulation]>=1.15.2", "flwr-datasets>=0.5.0", "torch==2.5.1", "scikit-learn==1.6.1", diff --git a/examples/flower-authentication/pyproject.toml b/examples/flower-authentication/pyproject.toml index 35801fb95fc2..3238fb2376a5 100644 --- a/examples/flower-authentication/pyproject.toml +++ b/examples/flower-authentication/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "Federated Learning with PyTorch and authenticated Flower " license = "Apache-2.0" dependencies = [ - "flwr>=1.15.0", + "flwr>=2", "flwr-datasets[vision]>=0.5.0", "torch>=2.5.0,<3.0.0", "torchvision>=0.20.1,<0.21.0", diff --git a/examples/flower-simulation-step-by-step-pytorch/my-awesome-app/pyproject.toml b/examples/flower-simulation-step-by-step-pytorch/my-awesome-app/pyproject.toml index ba3ff09ec333..0636ccd8d146 100644 --- a/examples/flower-simulation-step-by-step-pytorch/my-awesome-app/pyproject.toml +++ b/examples/flower-simulation-step-by-step-pytorch/my-awesome-app/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "" license = "Apache-2.0" dependencies = [ - "flwr[simulation]>=1.15.0", + "flwr[simulation]>=1.15.2", "flwr-datasets[vision]>=0.5.0", "torch==2.5.1", "torchvision==0.20.1", diff --git a/examples/flowertune-llm/pyproject.toml b/examples/flowertune-llm/pyproject.toml index 206147da8133..6dece214963c 100644 --- a/examples/flowertune-llm/pyproject.toml +++ b/examples/flowertune-llm/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.0" description = "FlowerTune LLM: Federated LLM Fine-tuning with Flower" license = "Apache-2.0" dependencies = [ - "flwr[simulation]==1.15.0", + "flwr[simulation]==1.15.2", "flwr-datasets>=0.5.0", "torch==2.3.1", "trl==0.8.1", diff --git a/examples/quickstart-lerobot/pyproject.toml b/examples/quickstart-lerobot/pyproject.toml index e8b095160ef8..4c2bca1e8e18 100644 --- a/examples/quickstart-lerobot/pyproject.toml +++ b/examples/quickstart-lerobot/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] dependencies = [ - "flwr[simulation]==1.15.0", + "flwr[simulation]==1.15.2", "transformers>=4.30.0,<5.0", "lerobot[pusht] @ git+https://github.com/huggingface/lerobot.git@96c7052777aca85d4e55dfba8f81586103ba8f61", "flwr-datasets>=0.5.0",