Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4c541cf

Browse filesBrowse files
authored
fix: allow redis 7.x (#16533)
Fixes #15832
1 parent a06bfaa commit 4c541cf
Copy full SHA for 4c541cf

3 files changed

+10-1Lines changed: 10 additions & 1 deletion

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.kokoro/system.sh‎

Copy file name to clipboardExpand all lines: .kokoro/system.sh
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ packages_with_system_tests=(
9898
"sqlalchemy-spanner"
9999
"google-cloud-firestore"
100100
"google-cloud-logging"
101+
"google-cloud-ndb"
101102
"google-cloud-pubsub"
102103
"google-cloud-testutils"
103104
"sqlalchemy-bigquery"
Collapse file

‎packages/google-cloud-ndb/setup.py‎

Copy file name to clipboardExpand all lines: packages/google-cloud-ndb/setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def main():
4545
"protobuf >= 4.25.8, < 8.0.0",
4646
"pymemcache >= 2.1.0, < 5.0.0",
4747
"pytz >= 2018.3",
48-
"redis >= 3.0.0, < 7.0.0",
48+
"redis >= 3.0.0, < 8.0.0",
4949
]
5050

5151
setuptools.setup(
Collapse file
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# We use the constraints file for the latest Python version
2+
# (currently this file) to check that the latest
3+
# major versions of dependencies are supported in setup.py.
4+
# List all library dependencies and extras in this file.
5+
# Require the latest major version be installed for each dependency.
6+
# e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0",
7+
# Then this file should have google-cloud-foo>=1
8+
redis>=7

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.