Skip to content

Commit

Permalink
fix: Add sqlparse dependency (#171)
Browse files Browse the repository at this point in the history
Co-authored-by: larkee <31196561+larkee@users.noreply.github.com>
  • Loading branch information
c24t and larkee committed Nov 23, 2020
1 parent 864f09c commit e801a2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -72,7 +72,7 @@ def default(session):
# Install all test dependencies, then install this package in-place.
session.install("asyncmock", "pytest-asyncio")

session.install("mock", "pytest", "pytest-cov", "sqlparse")
session.install("mock", "pytest", "pytest-cov")
session.install("-e", ".")

# Run py.test against the unit tests.
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -32,8 +32,9 @@
"google-api-core[grpc] >= 1.22.0, < 2.0.0dev",
"google-cloud-core >= 1.4.1, < 2.0dev",
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
"proto-plus==1.11.0",
"libcst >= 0.2.5",
"proto-plus == 1.11.0",
"sqlparse >= 0.3.0",
]
extras = {
"tracing": [
Expand Down

0 comments on commit e801a2e

Please sign in to comment.