flwr-nightly 1.26.0.dev20260126__py3-none-any.whl → 1.26.0.dev20260127__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
flwr/cli/app.py CHANGED
@@ -27,7 +27,6 @@ from .app_cmd import review as app_review
27
27
  from .build import build
28
28
  from .config import ls as config_list
29
29
  from .federation import ls as federation_list
30
- from .flower_config import init_flwr_config
31
30
  from .install import install
32
31
  from .log import log
33
32
  from .login import login
@@ -115,7 +114,6 @@ def main(
115
114
  ),
116
115
  ) -> None:
117
116
  """Flower CLI."""
118
- init_flwr_config()
119
117
  if version:
120
118
  typer.secho(f"Flower version: {package_version}", fg="blue")
121
119
  raise typer.Exit()
@@ -31,7 +31,7 @@ from .flower_config import (
31
31
  )
32
32
 
33
33
  CONFIG_MIGRATION_NOTICE = """
34
- ##################################################################
34
+ #######################################################################
35
35
  # CONFIGURATION MIGRATION NOTICE:
36
36
  #
37
37
  # What was previously called "federation config" for SuperLink
@@ -43,8 +43,8 @@ CONFIG_MIGRATION_NOTICE = """
43
43
  # The entries below are commented out intentionally and are kept
44
44
  # only as a migration reference.
45
45
  #
46
- # Docs: <link to Flower config docs>
47
- ##################################################################
46
+ # Docs: https://flower.ai/docs/framework/ref-flower-configuration.html
47
+ #######################################################################
48
48
 
49
49
  """
50
50
 
@@ -53,7 +53,7 @@ CLI_NOTICE = (
53
53
  + "We detected legacy usage of this command that relies on connection\n"
54
54
  + "settings from your pyproject.toml.\n\n"
55
55
  + "Flower will migrate any relevant settings to the new Flower config.\n\n"
56
- + "Learn more: https://flower.ai/docs\n"
56
+ + "Learn more: https://flower.ai/docs/framework/ref-flower-configuration.html\n"
57
57
  )
58
58
 
59
59
 
flwr/cli/constant.py CHANGED
@@ -57,7 +57,6 @@ class SuperLinkConnectionTomlKey:
57
57
  ADDRESS = "address"
58
58
  ROOT_CERTIFICATES = "root-certificates"
59
59
  INSECURE = "insecure"
60
- ENABLE_ACCOUNT_AUTH = "enable-account-auth"
61
60
  FEDERATION = "federation"
62
61
  OPTIONS = "options"
63
62
 
@@ -102,7 +101,6 @@ default = "local"
102
101
 
103
102
  [superlink.supergrid]
104
103
  address = "{SUPERGRID_ADDRESS}"
105
- enable-account-auth = true
106
104
  federation = "YOUR-FEDERATION-HERE"
107
105
 
108
106
  [superlink.local]
flwr/cli/flower_config.py CHANGED
@@ -195,9 +195,6 @@ def parse_superlink_connection(
195
195
  address=conn_dict.get(SuperLinkConnectionTomlKey.ADDRESS),
196
196
  root_certificates=conn_dict.get(SuperLinkConnectionTomlKey.ROOT_CERTIFICATES),
197
197
  insecure=conn_dict.get(SuperLinkConnectionTomlKey.INSECURE),
198
- enable_account_auth=conn_dict.get(
199
- SuperLinkConnectionTomlKey.ENABLE_ACCOUNT_AUTH
200
- ),
201
198
  federation=conn_dict.get(SuperLinkConnectionTomlKey.FEDERATION),
202
199
  options=simulation_options,
203
200
  )
@@ -221,7 +218,6 @@ def serialize_superlink_connection(connection: SuperLinkConnection) -> dict[str,
221
218
  SuperLinkConnectionTomlKey.ADDRESS: connection.address,
222
219
  SuperLinkConnectionTomlKey.ROOT_CERTIFICATES: connection.root_certificates,
223
220
  SuperLinkConnectionTomlKey.INSECURE: connection._insecure,
224
- SuperLinkConnectionTomlKey.ENABLE_ACCOUNT_AUTH: connection._enable_account_auth,
225
221
  SuperLinkConnectionTomlKey.FEDERATION: connection.federation,
226
222
  }
227
223
  # Remove None values
flwr/cli/login/login.py CHANGED
@@ -61,14 +61,6 @@ def login(
61
61
  superlink_connection = read_superlink_connection(superlink)
62
62
  superlink = superlink_connection.name
63
63
 
64
- # Check if `enable-account-auth` is set to `true`
65
- if not superlink_connection.enable_account_auth:
66
- raise click.ClickException(
67
- "Account authentication is not enabled for the SuperLink connection "
68
- f"'{superlink}'. To enable it, set `enable-account-auth = true` "
69
- "in the configuration."
70
- )
71
-
72
64
  # Check if insecure flag is set to `True`
73
65
  if superlink_connection.insecure:
74
66
  raise click.ClickException(
flwr/cli/typing.py CHANGED
@@ -106,8 +106,6 @@ class SuperLinkConnection:
106
106
  insecure : bool (default: False)
107
107
  Whether to use an insecure channel. If True, the
108
108
  connection will not use TLS encryption.
109
- enable_account_auth : bool (default: False)
110
- Whether to enable account authentication.
111
109
  federation : str
112
110
  The name of the federation to interface with.
113
111
  options : SuperLinkSimulationOptions
@@ -118,7 +116,6 @@ class SuperLinkConnection:
118
116
  address: str | None = None
119
117
  root_certificates: str | None = None
120
118
  _insecure: bool | None = None
121
- _enable_account_auth: bool | None = None
122
119
  federation: str | None = None
123
120
  options: SuperLinkSimulationOptions | None = None
124
121
 
@@ -129,7 +126,6 @@ class SuperLinkConnection:
129
126
  address: str | None = None,
130
127
  root_certificates: str | None = None,
131
128
  insecure: bool | None = None,
132
- enable_account_auth: bool | None = None,
133
129
  federation: str | None = None,
134
130
  options: SuperLinkSimulationOptions | None = None,
135
131
  ) -> None:
@@ -137,7 +133,6 @@ class SuperLinkConnection:
137
133
  self.address = address
138
134
  self.root_certificates = root_certificates
139
135
  self._insecure = insecure
140
- self._enable_account_auth = enable_account_auth
141
136
  self.federation = federation
142
137
  self.options = options
143
138
 
@@ -150,13 +145,6 @@ class SuperLinkConnection:
150
145
  return False
151
146
  return self._insecure
152
147
 
153
- @property
154
- def enable_account_auth(self) -> bool:
155
- """Return the enable_account_auth flag or its default (False) if unset."""
156
- if self._enable_account_auth is None:
157
- return False
158
- return self._enable_account_auth
159
-
160
148
  def __post_init__(self) -> None:
161
149
  """Validate SuperLink connection configuration."""
162
150
  err_prefix = f"Invalid value for key '%s' in connection '{self.name}': "
@@ -187,13 +175,6 @@ class SuperLinkConnection:
187
175
  err_prefix % SuperLinkConnectionTomlKey.INSECURE
188
176
  + f"expected bool, but got {type(self._insecure).__name__}."
189
177
  )
190
- if self._enable_account_auth is not None and not isinstance(
191
- self._enable_account_auth, bool
192
- ):
193
- raise ValueError(
194
- err_prefix % SuperLinkConnectionTomlKey.ENABLE_ACCOUNT_AUTH
195
- + f"expected bool, but got {type(self._enable_account_auth).__name__}."
196
- )
197
178
 
198
179
  if self.federation is not None and not isinstance(self.federation, str):
199
180
  raise ValueError(
flwr/cli/utils.py CHANGED
@@ -241,7 +241,9 @@ def require_superlink_address(connection: SuperLinkConnection) -> str:
241
241
  cmd = click.get_current_context().command.name
242
242
  raise click.ClickException(
243
243
  f"`flwr {cmd}` currently works with a SuperLink. Ensure that the "
244
- "correct SuperLink (Control API) address is provided in `pyproject.toml`."
244
+ "correct SuperLink (Control API) address is provided SuperLink connection "
245
+ "you are using. Check your Flower configuration file. You may use `flwr "
246
+ "config list` to see its location in the file system."
245
247
  )
246
248
  return connection.address
247
249
 
@@ -326,8 +328,10 @@ def flwr_cli_grpc_exc_handler() -> Iterator[None]: # pylint: disable=too-many-b
326
328
  raise click.ClickException(
327
329
  "The SuperLink cannot process this request. Please verify that "
328
330
  "you set the address to its Control API endpoint correctly in your "
329
- "`pyproject.toml`, and ensure that the Flower versions used by "
330
- "the CLI and SuperLink are compatible."
331
+ "SuperLink connection in your Flower Configuration file. You may use "
332
+ "`flwr config list` to see its location in the file system. "
333
+ "Additonally, ensure that the Flower versions used by the CLI and "
334
+ "SuperLink are compatible."
331
335
  ) from None
332
336
  if e.code() == grpc.StatusCode.PERMISSION_DENIED:
333
337
  # pylint: disable-next=E1101
@@ -321,7 +321,8 @@ def pull_object(
321
321
  if content is not None:
322
322
  object_available = content != b""
323
323
  # Record bytes traffic pulled by SuperNode
324
- state.store_traffic(request.run_id, bytes_sent=len(content), bytes_recv=0)
324
+ if object_available:
325
+ state.store_traffic(request.run_id, bytes_sent=len(content), bytes_recv=0)
325
326
  return PullObjectResponse(
326
327
  object_found=True,
327
328
  object_available=object_available,
@@ -53,6 +53,7 @@ def start_parent_process_monitor(
53
53
  while True:
54
54
  time.sleep(0.2)
55
55
  if not _pid_exists(parent_pid):
56
- os.kill(os.getpid(), signal.SIGKILL)
56
+ signal.raise_signal(signal.SIGINT)
57
+ break
57
58
 
58
59
  threading.Thread(target=monitor, daemon=True).start()
@@ -2,6 +2,7 @@
2
2
 
3
3
  ## Schema
4
4
 
5
+ <!-- BEGIN_SQLALCHEMY_DOCS -->
5
6
  ```mermaid
6
7
 
7
8
  ---
@@ -77,7 +78,6 @@ erDiagram
77
78
  INTEGER ref_count
78
79
  }
79
80
 
80
- <<<<<<< HEAD
81
81
  run {
82
82
  INTEGER bytes_recv "nullable"
83
83
  INTEGER bytes_sent "nullable"
@@ -98,8 +98,6 @@ erDiagram
98
98
  VARCHAR sub_status "nullable"
99
99
  }
100
100
 
101
- =======
102
- >>>>>>> main
103
101
  run_objects {
104
102
  VARCHAR object_id PK,FK
105
103
  INTEGER run_id PK
@@ -111,15 +109,13 @@ erDiagram
111
109
  VARCHAR token UK
112
110
  }
113
111
 
114
- <<<<<<< HEAD
115
112
  run ||--o| context : run_id
116
113
  run ||--o{ logs : run_id
117
114
  run ||--o{ message_ins : run_id
118
115
  run ||--o{ message_res : run_id
119
- =======
120
- >>>>>>> main
121
116
  objects ||--o| object_children : parent_id
122
117
  objects ||--o| object_children : child_id
123
118
  objects ||--o| run_objects : object_id
124
119
 
125
120
  ```
121
+ <!-- END_SQLALCHEMY_DOCS -->
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: flwr-nightly
3
- Version: 1.26.0.dev20260126
3
+ Version: 1.26.0.dev20260127
4
4
  Summary: Flower: A Friendly Federated AI Framework
5
5
  License: Apache-2.0
6
6
  Keywords: Artificial Intelligence,Federated AI,Federated Analytics,Federated Evaluation,Federated Learning,Flower,Machine Learning
@@ -6,7 +6,7 @@ flwr/app/message_type.py,sha256=WABg74wnkIdrmjD_AhlA7tYOqwni5n5Isagc8O9IdOc,1002
6
6
  flwr/app/metadata.py,sha256=rnfEHbw-IL1anLHwploK1YQQqKFHQmoF_M6rcSpRNCc,7422
7
7
  flwr/app/user_config.py,sha256=7xsOVs-NYIvE710iE1qRFqxlA3LQNnmcoVXqcg_Ez2g,802
8
8
  flwr/cli/__init__.py,sha256=EfMGmHoobET6P2blBt_eOByXL8299MgFfB7XNdaPQ6I,720
9
- flwr/cli/app.py,sha256=62ELnHyEbgTp2GDzgsuk-mJ09_Gs8WHysbRceOnH-x8,3851
9
+ flwr/cli/app.py,sha256=AEm7JewC_0FT2esOqNcB9Xkot7s7sGBf6yitzp8z6E4,3784
10
10
  flwr/cli/app_cmd/__init__.py,sha256=O_vTzS2u-n27fBYnDbjTMMKQQ2Bz80Y4JqGBHSAnK40,856
11
11
  flwr/cli/app_cmd/publish.py,sha256=DAFRu12EAO1NtzrGN9uYN_hW20gQZ2vCyf0HggzqaZ0,8006
12
12
  flwr/cli/app_cmd/review.py,sha256=FPusshF36519z_KN36mU2fcvRtb5DCh0esinsts8WEs,7200
@@ -18,17 +18,17 @@ flwr/cli/build.py,sha256=wjLrxWHGnwRFp7WxZFgm8J0cwcdQY9-QHxjFnEa2dII,10097
18
18
  flwr/cli/cli_account_auth_interceptor.py,sha256=mXgxThpZjU_2Xlae9xT8ewOw60GeE64comDd57asLIY,3680
19
19
  flwr/cli/config/__init__.py,sha256=46z6whA3hvKkl9APRs-UG7Ym3K9VOqKx_pYcgelRjtE,788
20
20
  flwr/cli/config/ls.py,sha256=llQiXC0kK7shT96Y3GD2uvVP3MjWWLpYTeExUH1rALo,3537
21
- flwr/cli/config_migration.py,sha256=UM3lZU34TOhGXkjBBChyGaE6r7uaVV2NpyP4TZhFPyY,10848
21
+ flwr/cli/config_migration.py,sha256=KJIVqpVbEfhY53taELFZuVGY0-sTPGiPOI6_FwEjfDI,10932
22
22
  flwr/cli/config_utils.py,sha256=t9GNUPnUH1nUNZQ3oGjx6Jd5VSO9SlnQXjz3-yro7Rs,7683
23
- flwr/cli/constant.py,sha256=Ihww6e-6V_Ocv7pRnIQeezdy72_RBL9dPYv87Yf4ppI,3612
23
+ flwr/cli/constant.py,sha256=uf4Boxj4A90NWP89cCSa542ijYSbU-9aGIzyBoEw0F4,3537
24
24
  flwr/cli/example.py,sha256=SNTorkKPrx1rOryGREUyZu8TcOc1-vFv1zEddaysdY0,2216
25
25
  flwr/cli/federation/__init__.py,sha256=okxswL4fAjApI9gV_alU1lRkTUcQRbwlzvtUTLz61fE,793
26
26
  flwr/cli/federation/ls.py,sha256=xjS3HHNwOXXsaNN-xrdWvClmV29R6yT8R2AA0SVzJas,10689
27
- flwr/cli/flower_config.py,sha256=8XGB9-XjJrpR2xYOcFWjmvmqGZRS5_M-rPhuZQQASSs,15267
27
+ flwr/cli/flower_config.py,sha256=EFsSJByBD-SmIReoBaSzuEriLz4716qh7LMU2_yfGzc,15065
28
28
  flwr/cli/install.py,sha256=gBYg1SczpvBh8MMrXJxi0q4DUdzXCdvapK3jC3CBlPk,9114
29
29
  flwr/cli/log.py,sha256=BPA0dvGlXx5PrtURPua5fJyF7iVrb28K4fEY2Uth0EE,7317
30
30
  flwr/cli/login/__init__.py,sha256=B1SXKU3HCQhWfFDMJhlC7FOl8UsvH4mxysxeBnrfyUE,800
31
- flwr/cli/login/login.py,sha256=uUUrt6TNJjV_udwS3qJ5TXcRqqtI9nBySdXzwXItoVc,3999
31
+ flwr/cli/login/login.py,sha256=o-jm5QRMIpivE8kpY7cPTGbr7nQhsyFYaftMtBaaT0s,3649
32
32
  flwr/cli/ls.py,sha256=ROSDyaQw5y9BjcBUtj57Vc3HgHTW_JbYX5NDIl-Yfhg,12793
33
33
  flwr/cli/new/__init__.py,sha256=QA1E2QtzPvFCjLTUHnFnJbufuFiGyT_0Y53Wpbvg1F0,790
34
34
  flwr/cli/new/new.py,sha256=15phs5dhEpo7ORs7uulGzHWtW9W5ZGn0EKFE_T5WXb8,7829
@@ -41,8 +41,8 @@ flwr/cli/supernode/__init__.py,sha256=DBkjoPo2hS2Y-ghJxwLbrAbCQFBgD82_Itl2_892UB
41
41
  flwr/cli/supernode/ls.py,sha256=x4ghJHpqcpDGuZx91ZehzSdmrUJ8ZuZvpY_UybnP63U,8224
42
42
  flwr/cli/supernode/register.py,sha256=YPf28ZDvqPAQAt6c6OG73AJa9zZPONKgpxhnnb3NWQk,5498
43
43
  flwr/cli/supernode/unregister.py,sha256=qWGg8G_KqF300ze4D1dYaSIRJZkl9zwM2ul8VLYjJMY,3719
44
- flwr/cli/typing.py,sha256=MaY3NAca2PgmNByogksDKSCoRQLQpXTgO8NO9nLP0yA,8008
45
- flwr/cli/utils.py,sha256=jLhe-Voj0v8cK16MwRXW7qf34lEffOauRIukDyYX2II,15258
44
+ flwr/cli/typing.py,sha256=N0Q3ylAOLryV5fsojaj2WuVo2xMzA4NpWXtkqdE97Hw,7174
45
+ flwr/cli/utils.py,sha256=HCQYvqAjO74awSWQ9dV_OfCZ9QSkMIoKQ5b0Y4EOeoo,15568
46
46
  flwr/client/__init__.py,sha256=xwkPJfdeWxIIfmiPE5vnmnY_JbTlErP0Qs9eBP6qRFg,1252
47
47
  flwr/client/client.py,sha256=3HAchxvknKG9jYbB7swNyDj-e5vUWDuMKoLvbT7jCVM,7895
48
48
  flwr/client/dpfedavg_numpy_client.py,sha256=ELDHyEJcTB-FlLhHC-JXy8HuB3ZFHfT0HL3g1VSWY5w,7451
@@ -260,7 +260,7 @@ flwr/server/superlink/fleet/grpc_rere/__init__.py,sha256=ahDJJ1e-lDxBpeBMgPk7YZt
260
260
  flwr/server/superlink/fleet/grpc_rere/fleet_servicer.py,sha256=DtHuDP7fvgO-iamI48ACr0TQcD20eBYwMicHKIjhmXQ,12583
261
261
  flwr/server/superlink/fleet/grpc_rere/node_auth_server_interceptor.py,sha256=88e9yEapAbk8fOoqG4f4-jvXMLuJAZYQF9j6whczegc,5811
262
262
  flwr/server/superlink/fleet/message_handler/__init__.py,sha256=fHsRV0KvJ8HtgSA4_YBsEzuhJLjO8p6xx4aCY2oE1p4,731
263
- flwr/server/superlink/fleet/message_handler/message_handler.py,sha256=FO-CuOKfOwomjefmZsn_NGUM4m0ptPGwMOtfQTYfro0,12109
263
+ flwr/server/superlink/fleet/message_handler/message_handler.py,sha256=WrJkw8SX_0XMnZ8velhjjFHUIQ8SuGMpojkWkyhqB_E,12142
264
264
  flwr/server/superlink/fleet/rest_rere/__init__.py,sha256=Lzc93nA7tDqoy-zRUaPG316oqFiZX1HUCL5ELaXY_xw,735
265
265
  flwr/server/superlink/fleet/rest_rere/rest_api.py,sha256=cDWDQBf79F9tZ1mXOErc-nsnY4zFP9Tcv7Fs-bQIdiU,9616
266
266
  flwr/server/superlink/fleet/vce/__init__.py,sha256=XOKbAWOzlCqEOQ3M2cBYkH7HKA7PxlbCJMunt-ty-DY,784
@@ -325,7 +325,7 @@ flwr/simulation/run_simulation.py,sha256=hSJAqOfMd8I30Pq9x2TXYXDCXAeUtWqwBncX6JG
325
325
  flwr/simulation/simulationio_connection.py,sha256=cS7yTOa5yeK-bQ2YjS9eJCXL8SOItEkiJD5sN5mBb_Y,3475
326
326
  flwr/supercore/__init__.py,sha256=pqkFoow_E6UhbBlhmoD1gmTH-33yJRhBsIZqxRPFZ7U,755
327
327
  flwr/supercore/address.py,sha256=vVE5y-t77YL16lMDVTeK3g75N8IKbQ72sVcRI-RPPWs,2984
328
- flwr/supercore/app_utils.py,sha256=K76Zt6R670b1hUmxOsNc1WUCVYvF7lejXPcCO9K0Q0g,1753
328
+ flwr/supercore/app_utils.py,sha256=P558DOr5a4UPyOdRCxbDQueQF-L-kSc6qzouPPuqj0U,1773
329
329
  flwr/supercore/cli/__init__.py,sha256=EDl2aO-fuQfxSbL-T1W9RAfA2N0hpWHmqX_GSwblJbQ,845
330
330
  flwr/supercore/cli/flower_superexec.py,sha256=IQIGzxgaeLNMNzGXGemfYK3lp8God5bTkXpVkbeP_ig,6109
331
331
  flwr/supercore/constant.py,sha256=qMeN0YGu_aZ95XKlLc7n4WBl_AVjA9vv_1666gGhCq8,2792
@@ -357,7 +357,7 @@ flwr/supercore/primitives/asymmetric.py,sha256=1643niHYj3uEbfPd06VuMHwN3tKVwg0uV
357
357
  flwr/supercore/primitives/asymmetric_ed25519.py,sha256=eIhOTMibQW0FJX4MXdplHdL3HcfCiKuFu2mQ8GQTUz8,5025
358
358
  flwr/supercore/sql_mixin.py,sha256=eT4JHaLG4gShZrC10pkUVIGcTvZszlJI1ARhOJEA_WY,11727
359
359
  flwr/supercore/state/__init__.py,sha256=FkKhsNVM4LjlRlOgXTz6twINmw5ohIUKS_OER0BNo_w,724
360
- flwr/supercore/state/schema/README.md,sha256=-0QrXDhnv30gEYoIUJo7aLUolY0r_t_nC24yk7B2agM,2892
360
+ flwr/supercore/state/schema/README.md,sha256=qVCGuyU-gObFrL5MRvH9LraNi0Z_LbXzolXykbOrY9w,2884
361
361
  flwr/supercore/state/schema/__init__.py,sha256=Egnde6OY01wrpT4PuhL4NGn_NY4jdAH7kf7ktagN4Ws,724
362
362
  flwr/supercore/state/schema/corestate_tables.py,sha256=TwonogWgEUtKeE-LY59wousWzhF0w3wMKAotRqvRxao,1392
363
363
  flwr/supercore/state/schema/linkstate_tables.py,sha256=aKh9zR6cF4ecOJHS8SzniLXkcNGd4OG4xnZvwC_qers,5583
@@ -402,7 +402,7 @@ flwr/supernode/servicer/__init__.py,sha256=lucTzre5WPK7G1YLCfaqg3rbFWdNSb7ZTt-ca
402
402
  flwr/supernode/servicer/clientappio/__init__.py,sha256=7Oy62Y_oijqF7Dxi6tpcUQyOpLc_QpIRZ83NvwmB0Yg,813
403
403
  flwr/supernode/servicer/clientappio/clientappio_servicer.py,sha256=rRL4CQ0L78jF_p0ct4-JMGREt6wWRy__wy4czF4f54Y,11639
404
404
  flwr/supernode/start_client_internal.py,sha256=BYk69UBQ2gQJaDQxXhccUgfOWrb7ShAstrbcMOCZIIs,26173
405
- flwr_nightly-1.26.0.dev20260126.dist-info/METADATA,sha256=tcxTPuQjyJ_6Uyt2AjjiDY18bTLl4a5awalqhBFiJkM,14398
406
- flwr_nightly-1.26.0.dev20260126.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
407
- flwr_nightly-1.26.0.dev20260126.dist-info/entry_points.txt,sha256=hxHD2ixb_vJFDOlZV-zB4Ao32_BQlL34ftsDh1GXv14,420
408
- flwr_nightly-1.26.0.dev20260126.dist-info/RECORD,,
405
+ flwr_nightly-1.26.0.dev20260127.dist-info/METADATA,sha256=RhGNTW1fpVATXZ-ajG9LFAL6O3lXMfWkJvvye6jVGN8,14398
406
+ flwr_nightly-1.26.0.dev20260127.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
407
+ flwr_nightly-1.26.0.dev20260127.dist-info/entry_points.txt,sha256=hxHD2ixb_vJFDOlZV-zB4Ao32_BQlL34ftsDh1GXv14,420
408
+ flwr_nightly-1.26.0.dev20260127.dist-info/RECORD,,