flwr-nightly 1.18.0.dev20250401__py3-none-any.whl → 1.18.0.dev20250403__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.
Files changed (207) hide show
  1. flwr/__init__.py +1 -1
  2. flwr/cli/__init__.py +1 -1
  3. flwr/cli/app.py +1 -1
  4. flwr/cli/build.py +1 -1
  5. flwr/cli/cli_user_auth_interceptor.py +1 -1
  6. flwr/cli/config_utils.py +1 -1
  7. flwr/cli/example.py +1 -1
  8. flwr/cli/install.py +1 -1
  9. flwr/cli/log.py +1 -1
  10. flwr/cli/login/__init__.py +1 -1
  11. flwr/cli/login/login.py +1 -1
  12. flwr/cli/ls.py +1 -1
  13. flwr/cli/new/__init__.py +1 -1
  14. flwr/cli/new/new.py +1 -1
  15. flwr/cli/new/templates/__init__.py +1 -1
  16. flwr/cli/new/templates/app/__init__.py +1 -1
  17. flwr/cli/new/templates/app/code/__init__.py +1 -1
  18. flwr/cli/new/templates/app/code/flwr_tune/__init__.py +1 -1
  19. flwr/cli/run/__init__.py +1 -1
  20. flwr/cli/run/run.py +1 -1
  21. flwr/cli/stop.py +1 -1
  22. flwr/cli/utils.py +1 -1
  23. flwr/client/__init__.py +1 -1
  24. flwr/client/app.py +1 -1
  25. flwr/client/client.py +1 -1
  26. flwr/client/client_app.py +1 -1
  27. flwr/client/clientapp/__init__.py +1 -1
  28. flwr/client/clientapp/app.py +1 -1
  29. flwr/client/clientapp/clientappio_servicer.py +1 -1
  30. flwr/client/clientapp/utils.py +1 -1
  31. flwr/client/dpfedavg_numpy_client.py +1 -1
  32. flwr/client/grpc_adapter_client/__init__.py +1 -1
  33. flwr/client/grpc_adapter_client/connection.py +1 -1
  34. flwr/client/grpc_client/__init__.py +1 -1
  35. flwr/client/grpc_client/connection.py +1 -1
  36. flwr/client/grpc_rere_client/__init__.py +1 -1
  37. flwr/client/grpc_rere_client/client_interceptor.py +1 -1
  38. flwr/client/grpc_rere_client/connection.py +1 -1
  39. flwr/client/grpc_rere_client/grpc_adapter.py +1 -1
  40. flwr/client/heartbeat.py +1 -1
  41. flwr/client/message_handler/__init__.py +1 -1
  42. flwr/client/message_handler/message_handler.py +1 -1
  43. flwr/client/mod/__init__.py +1 -1
  44. flwr/client/mod/centraldp_mods.py +1 -1
  45. flwr/client/mod/comms_mods.py +3 -3
  46. flwr/client/mod/localdp_mod.py +1 -1
  47. flwr/client/mod/secure_aggregation/__init__.py +1 -1
  48. flwr/client/mod/secure_aggregation/secagg_mod.py +1 -1
  49. flwr/client/mod/secure_aggregation/secaggplus_mod.py +1 -1
  50. flwr/client/mod/utils.py +1 -1
  51. flwr/client/nodestate/__init__.py +1 -1
  52. flwr/client/nodestate/in_memory_nodestate.py +1 -1
  53. flwr/client/nodestate/nodestate.py +1 -1
  54. flwr/client/nodestate/nodestate_factory.py +1 -1
  55. flwr/client/numpy_client.py +1 -1
  56. flwr/client/rest_client/__init__.py +1 -1
  57. flwr/client/rest_client/connection.py +1 -1
  58. flwr/client/run_info_store.py +1 -1
  59. flwr/client/supernode/__init__.py +1 -1
  60. flwr/client/supernode/app.py +1 -1
  61. flwr/client/typing.py +1 -1
  62. flwr/common/__init__.py +1 -1
  63. flwr/common/address.py +1 -1
  64. flwr/common/args.py +1 -1
  65. flwr/common/auth_plugin/__init__.py +1 -1
  66. flwr/common/auth_plugin/auth_plugin.py +1 -1
  67. flwr/common/config.py +1 -1
  68. flwr/common/constant.py +1 -1
  69. flwr/common/context.py +1 -1
  70. flwr/common/date.py +1 -1
  71. flwr/common/differential_privacy.py +1 -1
  72. flwr/common/differential_privacy_constants.py +1 -1
  73. flwr/common/dp.py +1 -1
  74. flwr/common/exit_handlers.py +1 -1
  75. flwr/common/grpc.py +1 -1
  76. flwr/common/logger.py +1 -1
  77. flwr/common/message.py +1 -1
  78. flwr/common/object_ref.py +1 -1
  79. flwr/common/parameter.py +1 -1
  80. flwr/common/pyproject.py +1 -1
  81. flwr/common/record/__init__.py +1 -1
  82. flwr/common/record/conversion_utils.py +1 -1
  83. flwr/common/record/typeddict.py +1 -1
  84. flwr/common/retry_invoker.py +1 -1
  85. flwr/common/secure_aggregation/__init__.py +1 -1
  86. flwr/common/secure_aggregation/crypto/__init__.py +1 -1
  87. flwr/common/secure_aggregation/crypto/shamir.py +1 -1
  88. flwr/common/secure_aggregation/crypto/symmetric_encryption.py +1 -1
  89. flwr/common/secure_aggregation/ndarrays_arithmetic.py +1 -1
  90. flwr/common/secure_aggregation/quantization.py +1 -1
  91. flwr/common/secure_aggregation/secaggplus_constants.py +1 -1
  92. flwr/common/secure_aggregation/secaggplus_utils.py +1 -1
  93. flwr/common/serde.py +1 -1
  94. flwr/common/telemetry.py +1 -1
  95. flwr/common/typing.py +1 -1
  96. flwr/common/version.py +1 -1
  97. flwr/proto/__init__.py +1 -1
  98. flwr/server/__init__.py +1 -1
  99. flwr/server/app.py +1 -1
  100. flwr/server/client_manager.py +1 -1
  101. flwr/server/client_proxy.py +1 -1
  102. flwr/server/compat/__init__.py +1 -1
  103. flwr/server/compat/app.py +1 -1
  104. flwr/server/compat/app_utils.py +1 -1
  105. flwr/server/compat/legacy_context.py +1 -1
  106. flwr/server/criterion.py +1 -1
  107. flwr/server/grid/grid.py +2 -2
  108. flwr/server/history.py +1 -1
  109. flwr/server/run_serverapp.py +1 -1
  110. flwr/server/server.py +1 -1
  111. flwr/server/server_app.py +1 -1
  112. flwr/server/server_config.py +1 -1
  113. flwr/server/serverapp/__init__.py +1 -1
  114. flwr/server/serverapp/app.py +1 -1
  115. flwr/server/serverapp_components.py +1 -1
  116. flwr/server/strategy/__init__.py +1 -1
  117. flwr/server/strategy/aggregate.py +1 -1
  118. flwr/server/strategy/bulyan.py +1 -1
  119. flwr/server/strategy/dp_adaptive_clipping.py +1 -1
  120. flwr/server/strategy/dp_fixed_clipping.py +1 -1
  121. flwr/server/strategy/dpfedavg_adaptive.py +1 -1
  122. flwr/server/strategy/dpfedavg_fixed.py +1 -1
  123. flwr/server/strategy/fault_tolerant_fedavg.py +1 -1
  124. flwr/server/strategy/fedadagrad.py +1 -1
  125. flwr/server/strategy/fedadam.py +1 -1
  126. flwr/server/strategy/fedavg.py +1 -1
  127. flwr/server/strategy/fedavg_android.py +1 -1
  128. flwr/server/strategy/fedavgm.py +1 -1
  129. flwr/server/strategy/fedmedian.py +1 -1
  130. flwr/server/strategy/fedopt.py +1 -1
  131. flwr/server/strategy/fedprox.py +1 -1
  132. flwr/server/strategy/fedtrimmedavg.py +1 -1
  133. flwr/server/strategy/fedxgb_bagging.py +1 -1
  134. flwr/server/strategy/fedxgb_cyclic.py +1 -1
  135. flwr/server/strategy/fedxgb_nn_avg.py +3 -2
  136. flwr/server/strategy/fedyogi.py +1 -1
  137. flwr/server/strategy/krum.py +1 -1
  138. flwr/server/strategy/qfedavg.py +1 -1
  139. flwr/server/strategy/strategy.py +1 -1
  140. flwr/server/superlink/__init__.py +1 -1
  141. flwr/server/superlink/ffs/__init__.py +1 -1
  142. flwr/server/superlink/ffs/disk_ffs.py +1 -1
  143. flwr/server/superlink/ffs/ffs.py +1 -1
  144. flwr/server/superlink/ffs/ffs_factory.py +1 -1
  145. flwr/server/superlink/fleet/__init__.py +1 -1
  146. flwr/server/superlink/fleet/grpc_adapter/__init__.py +1 -1
  147. flwr/server/superlink/fleet/grpc_adapter/grpc_adapter_servicer.py +1 -1
  148. flwr/server/superlink/fleet/grpc_bidi/__init__.py +1 -1
  149. flwr/server/superlink/fleet/grpc_bidi/flower_service_servicer.py +1 -1
  150. flwr/server/superlink/fleet/grpc_bidi/grpc_bridge.py +1 -1
  151. flwr/server/superlink/fleet/grpc_bidi/grpc_client_proxy.py +1 -1
  152. flwr/server/superlink/fleet/grpc_bidi/grpc_server.py +1 -1
  153. flwr/server/superlink/fleet/grpc_rere/__init__.py +1 -1
  154. flwr/server/superlink/fleet/grpc_rere/fleet_servicer.py +1 -1
  155. flwr/server/superlink/fleet/grpc_rere/server_interceptor.py +1 -1
  156. flwr/server/superlink/fleet/message_handler/__init__.py +1 -1
  157. flwr/server/superlink/fleet/message_handler/message_handler.py +1 -1
  158. flwr/server/superlink/fleet/rest_rere/__init__.py +1 -1
  159. flwr/server/superlink/fleet/rest_rere/rest_api.py +1 -1
  160. flwr/server/superlink/fleet/vce/__init__.py +1 -1
  161. flwr/server/superlink/fleet/vce/backend/__init__.py +1 -1
  162. flwr/server/superlink/fleet/vce/backend/backend.py +1 -1
  163. flwr/server/superlink/fleet/vce/backend/raybackend.py +1 -1
  164. flwr/server/superlink/fleet/vce/vce_api.py +1 -1
  165. flwr/server/superlink/linkstate/__init__.py +1 -1
  166. flwr/server/superlink/linkstate/in_memory_linkstate.py +1 -1
  167. flwr/server/superlink/linkstate/linkstate.py +1 -1
  168. flwr/server/superlink/linkstate/linkstate_factory.py +1 -1
  169. flwr/server/superlink/linkstate/sqlite_linkstate.py +1 -1
  170. flwr/server/superlink/linkstate/utils.py +1 -1
  171. flwr/server/superlink/simulation/__init__.py +1 -1
  172. flwr/server/superlink/simulation/simulationio_grpc.py +1 -1
  173. flwr/server/superlink/simulation/simulationio_servicer.py +1 -1
  174. flwr/server/superlink/utils.py +1 -1
  175. flwr/server/typing.py +1 -1
  176. flwr/server/utils/__init__.py +1 -1
  177. flwr/server/utils/tensorboard.py +1 -1
  178. flwr/server/utils/validator.py +1 -1
  179. flwr/server/workflow/__init__.py +1 -1
  180. flwr/server/workflow/constant.py +1 -1
  181. flwr/server/workflow/default_workflows.py +1 -1
  182. flwr/server/workflow/secure_aggregation/__init__.py +1 -1
  183. flwr/server/workflow/secure_aggregation/secagg_workflow.py +1 -1
  184. flwr/server/workflow/secure_aggregation/secaggplus_workflow.py +1 -1
  185. flwr/simulation/__init__.py +1 -1
  186. flwr/simulation/app.py +1 -1
  187. flwr/simulation/legacy_app.py +1 -1
  188. flwr/simulation/ray_transport/__init__.py +1 -1
  189. flwr/simulation/ray_transport/ray_actor.py +1 -1
  190. flwr/simulation/ray_transport/ray_client_proxy.py +1 -1
  191. flwr/simulation/ray_transport/utils.py +1 -1
  192. flwr/simulation/run_simulation.py +2 -2
  193. flwr/simulation/simulationio_connection.py +1 -1
  194. flwr/superexec/__init__.py +1 -1
  195. flwr/superexec/app.py +1 -1
  196. flwr/superexec/deployment.py +1 -1
  197. flwr/superexec/exec_grpc.py +1 -1
  198. flwr/superexec/exec_servicer.py +1 -1
  199. flwr/superexec/exec_user_auth_interceptor.py +1 -1
  200. flwr/superexec/executor.py +1 -1
  201. flwr/superexec/simulation.py +1 -1
  202. {flwr_nightly-1.18.0.dev20250401.dist-info → flwr_nightly-1.18.0.dev20250403.dist-info}/METADATA +1 -1
  203. flwr_nightly-1.18.0.dev20250403.dist-info/RECORD +333 -0
  204. flwr_nightly-1.18.0.dev20250401.dist-info/RECORD +0 -333
  205. {flwr_nightly-1.18.0.dev20250401.dist-info → flwr_nightly-1.18.0.dev20250403.dist-info}/LICENSE +0 -0
  206. {flwr_nightly-1.18.0.dev20250401.dist-info → flwr_nightly-1.18.0.dev20250403.dist-info}/WHEEL +0 -0
  207. {flwr_nightly-1.18.0.dev20250401.dist-info → flwr_nightly-1.18.0.dev20250403.dist-info}/entry_points.txt +0 -0
flwr/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/app.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/build.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/config_utils.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/example.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/install.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/log.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/login/login.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/ls.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/new/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/new/new.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/run/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/run/run.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/stop.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/cli/utils.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/client/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/client/app.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/client/client.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/client/client_app.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2022 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/client/heartbeat.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2022 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2022 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -47,8 +47,8 @@ def arrays_size_mod(
47
47
  ) -> Message:
48
48
  """Arrays size mod.
49
49
 
50
- This mod logs the number of array elements transmitted in ``ArrayRecord``s of
51
- the message as well as their sizes in bytes.
50
+ This mod logs the number of array elements transmitted in ``ArrayRecord`` objects
51
+ of the message as well as their sizes in bytes.
52
52
  """
53
53
  model_size_stats = {}
54
54
  arrays_size_in_bytes = 0
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/client/mod/utils.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/client/typing.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/address.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/args.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/config.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/constant.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/context.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/date.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2023 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/dp.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2022 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/grpc.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2022 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/logger.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/message.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/object_ref.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/parameter.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
flwr/common/pyproject.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Flower Labs GmbH. All Rights Reserved.
1
+ # Copyright 2025 Flower Labs GmbH. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.