From efbd18d0dc86530f22455d0fab25edad96af3fe1 Mon Sep 17 00:00:00 2001 From: Paul Andrey <paul.andrey@inria.fr> Date: Mon, 13 Feb 2023 10:30:41 +0100 Subject: [PATCH] Update version to 2.0.1 --- declearn/__init__.py | 8 ++++---- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/declearn/__init__.py b/declearn/__init__.py index 075582a5..63f48749 100644 --- a/declearn/__init__.py +++ b/declearn/__init__.py @@ -23,9 +23,9 @@ with the aim of providing users with a modular and extensible framework to implement federated learning algorithms and apply them to real-world (or simulated) data using any common machine learning framework. -Declearn provides with abstractions that enable algorithms to be written -agnostic to the actual computation framework as well as with workable -interfaces that cover some of the most popular frameworks, such as +Declearn provides with abstractions that enable algorithms to be written +agnostic to the actual computation framework as well as with workable +interfaces that cover some of the most popular frameworks, such as Scikit-Learn, TensorFlow and PyTorch. The package is organized into the following submodules: @@ -64,4 +64,4 @@ from . import ( utils, ) -__version__ = "2.0.0" +__version__ = "2.0.1" diff --git a/pyproject.toml b/pyproject.toml index 919316b3..e4e15c37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ requires = [ [project] name = "declearn" -version = "2.0.0" +version = "2.0.1" description = "Declearn - a python package for private decentralized learning." readme = "README.md" requires-python = ">=3.8" -- GitLab