Skip to content

Commit d53fcce

Browse files
authored
fix(deps): move libcst to extras (#271)
* fix(deps): move libcst to extras * Update setup.py
1 parent b1f955b commit d53fcce

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

UPGRADING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ If you previously were using modules or functions under the namespace
2020
To assist with this, we have included some helpful scripts to make some of the code
2121
modifications required to use 2.0.0.
2222

23-
* Install the library
23+
* Install the library with `libcst`.
2424

2525
```py
26-
python3 -m pip install google-cloud-datastore
26+
python3 -m pip install google-cloud-datastore[libcst]
2727
```
2828

2929
* The scripts `fixup_datastore_v1_keywords.py` and `fixup_datastore_admin_v1_keywords.py`

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@
3838
# https://github.com/googleapis/google-cloud-python/issues/10566
3939
"google-cloud-core >= 1.4.0, <3.0.0dev",
4040
"proto-plus >= 1.4.0",
41-
"libcst >= 0.2.5",
4241
]
43-
extras = {}
42+
extras = {"libcst": "libcst >= 0.2.5"}
4443

4544

4645
# Setup boilerplate below this line.

0 commit comments

Comments
 (0)