forked from 626_privacy/tensorflow_privacy
Add tensorflow and tensorflow-datasets to setup/requirements.
PiperOrigin-RevId: 390171562
This commit is contained in:
parent
fbaa55cc43
commit
f44dcb8760
3 changed files with 5 additions and 2 deletions
|
@ -5,3 +5,4 @@ attrs>=21.2.0
|
||||||
mpmath
|
mpmath
|
||||||
dm-tree~=0.1.1
|
dm-tree~=0.1.1
|
||||||
tensorflow-probability>=0.13.0
|
tensorflow-probability>=0.13.0
|
||||||
|
tensorflow-datasets>=4.4.0
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -17,16 +17,18 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='tensorflow_privacy',
|
name='tensorflow_privacy',
|
||||||
version='0.7.0',
|
version='0.7.1',
|
||||||
url='https://github.com/tensorflow/privacy',
|
url='https://github.com/tensorflow/privacy',
|
||||||
license='Apache-2.0',
|
license='Apache-2.0',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
'tensorflow>=1.14',
|
||||||
'scipy>=0.17',
|
'scipy>=0.17',
|
||||||
'tensorflow-estimator>=2.3.0', # for DP versions of estimator.
|
'tensorflow-estimator>=2.3.0', # for DP versions of estimator.
|
||||||
'attrs>=21.2.0', # for tree_aggregation_query.py.
|
'attrs>=21.2.0', # for tree_aggregation_query.py.
|
||||||
'mpmath', # used in tests only
|
'mpmath', # used in tests only
|
||||||
'dm-tree~=0.1.1', # used in tests only
|
'dm-tree~=0.1.1', # used in tests only
|
||||||
'tensorflow-probability>=0.13.0', # For discrete Gaussian.
|
'tensorflow-probability>=0.13.0', # For discrete Gaussian.
|
||||||
|
'tensorflow-datasets>=4.4.0'
|
||||||
],
|
],
|
||||||
# Explicit dependence on TensorFlow is not supported.
|
# Explicit dependence on TensorFlow is not supported.
|
||||||
# See https://github.com/tensorflow/tensorflow/issues/7166
|
# See https://github.com/tensorflow/tensorflow/issues/7166
|
||||||
|
|
|
@ -13,4 +13,4 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
"""TensorFlow Privacy version."""
|
"""TensorFlow Privacy version."""
|
||||||
|
|
||||||
__version__ = '0.7.0'
|
__version__ = '0.7.1'
|
||||||
|
|
Loading…
Reference in a new issue