Skip to content

Commit fddda04

Browse files
committed
chore: Bump flwr to 1.32.1
Signed-off-by: Chong Shen Ng <chong.shen@flower.ai>
1 parent f5844b9 commit fddda04

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

federated-learning-controller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ flwr run --insecure --run-config 'num-server-rounds=3' \
295295

296296
The reference [Flower PyTorch MNIST app](./examples/flower/app-torch/) is a
297297
SuperExec-compatible Flower app — its `Dockerfile` uses
298-
`flwr/superexec:1.26.1` as the base image and registers
298+
`flwr/superexec:1.32.1` as the base image and registers
299299
`ServerApp` / `ClientApp` via `[tool.flwr.app.components]` in
300300
`pyproject.toml`. Dependencies are baked into the image at build time so pods
301301
start without re-downloading PyTorch on every restart.

federated-learning-controller/examples/flower/app-torch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM flwr/superexec:1.26.1-py3.13-ubuntu24.04
1+
FROM flwr/superexec:1.32.1-py3.13-ubuntu24.04
22

33
WORKDIR /app
44
COPY pyproject.toml .

federated-learning-controller/examples/flower/app-torch/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "1.0.0"
88
description = "MNIST Image Classification with Federated Learning (FedAvg + CNN)"
99
license = "Apache-2.0"
1010
dependencies = [
11-
"flwr>=1.26.1,<2",
11+
"flwr>=1.32.1,<2",
1212
"flwr-datasets[vision]>=0.6.0",
1313
"torch==2.10.0",
1414
"torchvision==0.25.0",

flower-addon/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ RELEASE_NAME ?= flower-addon
66
CHART_PATH ?= charts/flower-addon
77

88
# Image configuration (default: official Flower images)
9-
SUPERLINK_IMAGE ?= flwr/superlink:1.26.1-py3.13-ubuntu24.04
10-
SUPERNODE_IMAGE ?= flwr/supernode:1.26.1-py3.13-ubuntu24.04
9+
SUPERLINK_IMAGE ?= flwr/superlink:1.32.1-py3.13-ubuntu24.04
10+
SUPERNODE_IMAGE ?= flwr/supernode:1.32.1-py3.13-ubuntu24.04
1111
APP_IMAGE ?= flower-app:1.0.0
1212

1313
.PHONY: all

flower-addon/charts/flower-addon/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: flower-addon
33
description: Flower Federated Learning addon for Open Cluster Management
44
type: application
55
version: 0.1.0
6-
appVersion: "1.26.1"
6+
appVersion: "1.32.1"
77
keywords:
88
- federated-learning
99
- flower

flower-addon/charts/flower-addon/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ superlink:
66
namespace: flower-system
77
image:
88
repository: flwr/superlink
9-
tag: "1.26.1-py3.13-ubuntu24.04"
9+
tag: "1.32.1-py3.13-ubuntu24.04"
1010
pullPolicy: IfNotPresent
1111
resources:
1212
requests:
@@ -35,7 +35,7 @@ tls:
3535
supernode:
3636
image:
3737
repository: flwr/supernode
38-
tag: "1.26.1-py3.13-ubuntu24.04"
38+
tag: "1.32.1-py3.13-ubuntu24.04"
3939
pullPolicy: IfNotPresent
4040
resources:
4141
requests:

flower-addon/cifar10/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM flwr/superexec:1.26.1-py3.13-ubuntu24.04
1+
FROM flwr/superexec:1.32.1-py3.13-ubuntu24.04
22

33
WORKDIR /app
44
COPY pyproject.toml .

flower-addon/cifar10/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "1.0.0"
88
description = "CIFAR-10 Image Classification with Federated Learning (FedAvg + CNN)"
99
license = "Apache-2.0"
1010
dependencies = [
11-
"flwr>=1.26.1",
11+
"flwr>=1.32.1",
1212
"flwr-datasets[vision]>=0.6.0",
1313
"torch==2.10.0",
1414
"torchvision==0.25.0",

0 commit comments

Comments
 (0)