From 97aaf302eb2ceeb30ac803762da206134e420402 Mon Sep 17 00:00:00 2001 From: Michael Reneer Date: Tue, 19 Sep 2023 15:22:07 -0700 Subject: [PATCH] Update the version of some dependencies in `tensorflow_privacy`. * `attrs` to `>=21.4`. * `dp-accounting` to `>=0.4.3`. PiperOrigin-RevId: 566758983 --- requirements.txt | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7d73be8..1e7475d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,9 +21,9 @@ # `~=x.0`. absl-py>=1.0,==1.* -attrs~=21.4 +attrs>=21.4 dm-tree==0.1.8 -dp-accounting==0.4.2 +dp-accounting==0.4.3 immutabledict~=2.2 matplotlib~=3.3 mpmath~=1.2 diff --git a/setup.py b/setup.py index 376e345..4928c8c 100644 --- a/setup.py +++ b/setup.py @@ -28,9 +28,9 @@ setup( license='Apache-2.0', install_requires=[ 'absl-py>=1.0,==1.*', - 'attrs~=21.4', + 'attrs>=21.4', 'dm-tree==0.1.8', - 'dp-accounting==0.4.2', + 'dp-accounting==0.4.3', 'immutabledict~=2.2', 'matplotlib~=3.3', 'numpy~=1.21',