From 9845645ef358c3283fb929b5e6d12b9d0a479fb5 Mon Sep 17 00:00:00 2001 From: Michael Meredith Date: Tue, 20 Jun 2023 09:07:16 -0400 Subject: [PATCH] fix typo --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index be2a3a9140..27e85bc258 100644 --- a/python/setup.py +++ b/python/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup -# Extra dependencies, with special 'tensorflow' key. TF requires a specific versio of +# Extra dependencies, with special 'tensorflow' key. TF requires a specific version of # proto to be installed to use their protos. extras = {"tensorflow": ["tensorflow", "protobuf>=3.20.2,<4.0.0"]} all_extra_deps = chain.from_iterable(extras.values())