Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def default(session, django_version="2.2"):
"pytest-cov",
"coverage",
"sqlparse==0.3.0",
"google-cloud-spanner==3.11.1",
"google-cloud-spanner>=3.13.0",
"opentelemetry-api==1.1.0",
"opentelemetry-sdk==1.1.0",
"opentelemetry-instrumentation==0.20b0",
Expand Down Expand Up @@ -146,7 +146,6 @@ def system_test(session, django_version="2.2"):
constraints_path,
)
session.install("-e", ".[tracing]", "-c", constraints_path)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: is this intentional?

# Run py.test against the system tests.
if system_test_exists:
session.run("py.test", "--quiet", system_test_path, *session.posargs)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# 'Development Status :: 4 - Beta'
# 'Development Status :: 5 - Production/Stable'
release_status = "Development Status :: 5 - Production/Stable"
dependencies = ["sqlparse >= 0.3.0", "google-cloud-spanner == 3.11.1"]
dependencies = ["sqlparse >= 0.3.0", "google-cloud-spanner >= 3.13.0"]
extras = {
"tracing": [
"opentelemetry-api >= 1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion testing/constraints-3.6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
# Then this file should have foo==1.14.0
sqlparse==0.3.0
google-cloud-spanner==3.11.1
google-cloud-spanner>=3.13.0
opentelemetry-api==1.1.0
opentelemetry-sdk==1.1.0
opentelemetry-instrumentation==0.20b0