Skip to content

Commit

Permalink
fix(deps): move libcst to extras (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 authored Feb 15, 2022
1 parent 4a60e0c commit f84fa6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-python-speech/UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ The 2.0.0 release requires Python 3.6+.
Methods expect request objects. We provide a script that will convert most common use cases.

* Install the library
* Install the library with the `libcst` extra

```py
python3 -m pip install google-cloud-speech
python3 -m pip install google-cloud-speech[libcst]
```

* The scripts `fixup_speech_v1_keywords.py` and `fixup_speech_v1p1beta1_keywords.py` are shipped with the library. It expects an input directory (with the code to convert) and an empty destination directory.
Expand Down
3 changes: 1 addition & 2 deletions packages/google-cloud-python-speech/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@
# Until this issue is closed
# https://github.com/googleapis/google-cloud-python/issues/10566
"google-api-core[grpc] >= 1.28.0, <3.0.0dev",
"libcst >= 0.2.5",
"proto-plus >= 1.4.0",
]
extras = {}
extras = {"libcst": "libcst >= 0.2.5"}


# Setup boilerplate below this line.
Expand Down

0 comments on commit f84fa6e

Please sign in to comment.