Update version to 0.5.1, and add dependence on tensorflow-estimator.

PiperOrigin-RevId: 329822203
This commit is contained in:
Steve Chien 2020-09-02 17:31:07 -07:00 committed by A. Unique TensorFlower
parent f677c9c440
commit 8d89ef0a4b
3 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,5 @@
tensorflow>=1.14
tensorflow-estimator>=2.3.0
mpmath
scipy>=0.17
dm-tree~=0.1.1

View file

@ -17,11 +17,12 @@ from setuptools import setup
setup(
name='tensorflow_privacy',
version='0.5.0',
version='0.5.1',
url='https://github.com/tensorflow/privacy',
license='Apache-2.0',
install_requires=[
'scipy>=0.17',
'tensorflow-estimator>=2.3.0', # for DP versions of estimator.
'mpmath', # used in tests only
'dm-tree~=0.1.1', # used in tests only
],

View file

@ -13,4 +13,4 @@
# limitations under the License.
"""TensorFlow Privacy version."""
__version__ = '0.5.0'
__version__ = '0.5.1'