From 8f07a4fcde1b38895902f345cefc2302a1670c67 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Mon, 14 Feb 2022 11:05:28 -0700 Subject: [PATCH] fix(deps): move libcst to extras --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ac58e62e7..fb0cf8187 100644 --- a/setup.py +++ b/setup.py @@ -39,9 +39,8 @@ "google-cloud-core >= 1.4.1, <3.0.0dev", "grpc-google-iam-v1 >= 0.12.3, < 0.13dev", "proto-plus >= 1.13.0", - "libcst >= 0.2.5", ] -extras = {} +extras = {"libcst": "libcst >= 0.2.5"} # Setup boilerplate below this line.