Skip to content

Commit

Permalink
fix(deps): Add missing six dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rwhogg committed Sep 14, 2023
1 parent b0f4310 commit c389c29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ def main():
"google-cloud-datastore >= 2.16.0, < 3.0.0dev",
"protobuf >= 3.19.5, <5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
"pymemcache >= 2.1.0, < 5.0.0dev",
"pytz >= 2018.3",
"redis >= 3.0.0, < 5.0.0dev",
"pytz >= 2018.3"
# TODO(https://github.com/googleapis/python-ndb/issues/913) remove this dependency once six is no longer used in the codebase
"six >= 1.12.0, < 2.0.0dev"
]

setuptools.setup(
Expand Down
2 changes: 2 additions & 0 deletions testing/constraints-3.7.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ protobuf==3.19.5
pymemcache==2.1.0
redis==3.0.0
pytz==2018.3
# TODO(https://github.com/googleapis/python-ndb/issues/913) remove this dependency once six is no longer used in the codebase
six==1.12.0

0 comments on commit c389c29

Please sign in to comment.