Skip to content

Commit b1ee5c2

Browse files
committed
Released 1.4.3.
1 parent baced5d commit b1ee5c2

File tree

4 files changed

+7
-66
lines changed

4 files changed

+7
-66
lines changed

docs/docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In order to run any of the examples, first run the following command to include
3232
uv sync
3333
```
3434

35-
In case you need extra dependencies (including homormorphic encryption, differential privacy, reinforcement learning, secure multi-party computation, self-supervised learning, HuggingFace transformers and PEFT, or the MLX framework), you should run:
35+
In case you need extra dependencies (including differential privacy, reinforcement learning, secure multi-party computation, and the MLX framework), you should run:
3636

3737
```bash
3838
uv sync --all-extras

docs/docs/mlx.md

Lines changed: 0 additions & 56 deletions
This file was deleted.

plato/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.2"
1+
__version__ = "1.4.3"

pyproject.toml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "plato-learn"
7-
version = "1.4.2"
7+
version = "1.4.3"
88
description = "Plato: a research framework for federated learning"
99
readme = "README.md"
1010
requires-python = ">=3.13"
@@ -20,30 +20,27 @@ dependencies = [
2020
"lightly",
2121
"munch",
2222
"numpy",
23+
"peft",
2324
"python-socketio",
2425
"requests",
2526
"safetensors",
27+
"scipy",
28+
"tenseal",
2629
"timm",
2730
"torch",
2831
"torch-optimizer",
2932
"torchvision",
33+
"transformers",
3034
"zstd",
3135
]
3236

3337
[project.optional-dependencies]
34-
huggingface = [
35-
"transformers",
36-
"peft",
37-
]
3838
mpc = [
3939
"kazoo"
4040
]
4141
rl = [
4242
"gymnasium"
4343
]
44-
he = [
45-
"tenseal"
46-
]
4744
dp = [
4845
"opacus"
4946
]

0 commit comments

Comments
 (0)