From 6589383f149fcf463d153fe76973bd874ff3967a Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Mon, 25 Jan 2021 15:54:38 -0700 Subject: [PATCH] fix(deps): remove optional dependencies (#187) `mock` is only needed to run the tests (see https://github.com/googleapis/python-aiplatform/blob/8c0932f3f4d0e1ac40e55b1f0b2ce67c1873dee6/noxfile.py#L75-L77) , and `libcst` is not needed by this library. --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index d03986fded..1c36e47985 100644 --- a/setup.py +++ b/setup.py @@ -44,9 +44,7 @@ include_package_data=True, install_requires=( "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", - "libcst >= 0.2.5", "proto-plus >= 1.10.1", - "mock >= 4.0.2", "google-cloud-storage >= 1.26.0, < 2.0.0dev", ), python_requires=">=3.6",