Skip to content

Commit

Permalink
fix(deps): move libcst to extras (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 authored Feb 15, 2022
1 parent 123ee95 commit 446e421
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-secret-manager/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-secret-manager
python3 -m pip install google-cloud-secret-manager[libcst]
```

* The script `fixup_secretmanager_v1_keywords.py` is shipped with the library. It expects
Expand Down
3 changes: 2 additions & 1 deletion packages/google-cloud-secret-manager/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"google-api-core[grpc] >= 1.28.0, <3.0.0dev",
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
"proto-plus >= 1.4.0",
"libcst >= 0.2.5",
]
extras = {"libcst": "libcst >= 0.2.5"}

package_root = os.path.abspath(os.path.dirname(__file__))

Expand Down Expand Up @@ -77,6 +77,7 @@
packages=packages,
namespace_packages=namespaces,
install_requires=dependencies,
extras_require=extras,
python_requires=">=3.6",
scripts=[
"scripts/fixup_secretmanager_v1_keywords.py",
Expand Down

0 comments on commit 446e421

Please sign in to comment.