Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
fix(deps): move libcst to extras (#194)
Browse files Browse the repository at this point in the history
libcst is only needed to run the fixup script (used when migrating from the last major version).
  • Loading branch information
busunkim96 committed Feb 14, 2022
1 parent b6094fb commit 1c308c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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-container
python3 -m pip install google-cloud-container[libcst]
```

* The script `fixup_container_v1_keywords.py` and `fixup_container_v1beta1_keywords.py`
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@
"google-api-core[grpc] >= 1.28.0, <3.0.0dev",
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
"proto-plus >= 1.15.0",
"libcst >= 0.2.5",
]
extras = {}
extras = {"libcst": "libcst >= 0.2.5"}


# Setup boilerplate below this line.
Expand Down

0 comments on commit 1c308c2

Please sign in to comment.