Skip to content

Commit 50a6921

Browse files
Conchylicultorcopybara-github
authored andcommitted
Update tests to TF 1.14.0
PiperOrigin-RevId: 258286499
1 parent 30cdeb2 commit 50a6921

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ TensorFlow Datasets provides many public datasets as `tf.data.Datasets`.
3030
```sh
3131
pip install tensorflow-datasets
3232

33-
# Requires TF 1.13+ to be installed.
33+
# Requires TF 1.14+ to be installed.
3434
# Some datasets require additional libraries; see setup.py extras_require
3535
pip install tensorflow
3636
# or:

docs/overview.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"\n",
6868
"`pip install tensorflow-datasets`\n",
6969
"\n",
70-
"Note that `tensorflow-datasets` expects you to have TensorFlow already installed, and currently depends on `tensorflow` (or `tensorflow-gpu`) >= `1.13.0`."
70+
"Note that `tensorflow-datasets` expects you to have TensorFlow already installed, and currently depends on `tensorflow` (or `tensorflow-gpu`) >= `1.14.0`."
7171
]
7272
},
7373
{

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@
123123

124124
EXTRAS_REQUIRE = {
125125
'apache-beam': ['apache-beam'],
126-
'tensorflow': ['tensorflow>=1.13.0'],
127-
'tensorflow_gpu': ['tensorflow-gpu>=1.13.0'],
126+
'tensorflow': ['tensorflow>=1.14.0'],
127+
'tensorflow_gpu': ['tensorflow-gpu>=1.14.0'],
128128
'tests': TESTS_REQUIRE + all_dataset_extras,
129129
}
130130
EXTRAS_REQUIRE.update(DATASET_EXTRAS)

0 commit comments

Comments
 (0)