Skip to content

Commit b95e040

Browse files
yfang1Yicheng Fang
andauthored
fix: making the uploader depend on tensorflow-proper (#499)
Co-authored-by: Yicheng Fang <yichengfang@google.com>
1 parent 177aebc commit b95e040

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,10 @@
2929
with io.open(readme_filename, encoding="utf-8") as readme_file:
3030
readme = readme_file.read()
3131

32-
tensorboard_extra_require = [
33-
"tensorflow-cpu>=2.3.0, <=2.5.0",
34-
"grpcio~=1.38.1",
35-
"six~=1.15.0",
36-
]
32+
tensorboard_extra_require = ["tensorflow >=2.3.0, <=2.5.0"]
3733
metadata_extra_require = ["pandas >= 1.0.0"]
3834
full_extra_require = tensorboard_extra_require + metadata_extra_require
39-
testing_extra_require = full_extra_require + ["grpcio-testing~=1.38.1"]
35+
testing_extra_require = full_extra_require + ["grpcio-testing"]
4036

4137

4238
setuptools.setup(

0 commit comments

Comments
 (0)