Update version to 0.5.1, and add dependence on tensorflow-estimator.
PiperOrigin-RevId: 329822203
This commit is contained in:
parent
f677c9c440
commit
8d89ef0a4b
3 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
tensorflow>=1.14
|
||||
tensorflow-estimator>=2.3.0
|
||||
mpmath
|
||||
scipy>=0.17
|
||||
dm-tree~=0.1.1
|
||||
|
|
3
setup.py
3
setup.py
|
@ -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
|
||||
],
|
||||
|
|
|
@ -13,4 +13,4 @@
|
|||
# limitations under the License.
|
||||
"""TensorFlow Privacy version."""
|
||||
|
||||
__version__ = '0.5.0'
|
||||
__version__ = '0.5.1'
|
||||
|
|
Loading…
Reference in a new issue