Skip to content

Commit 3b1ffb7

Browse files
authored
fix(deps): Add missing six dependency (#912)
1 parent b0f4310 commit 3b1ffb7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ def main():
2828
"google-cloud-datastore >= 2.16.0, < 3.0.0dev",
2929
"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",
3030
"pymemcache >= 2.1.0, < 5.0.0dev",
31+
"pytz >= 2018.3",
3132
"redis >= 3.0.0, < 5.0.0dev",
32-
"pytz >= 2018.3"
33+
# TODO(https://github.com/googleapis/python-ndb/issues/913) remove this dependency once six is no longer used in the codebase
34+
"six >= 1.12.0, < 2.0.0dev"
3335
]
3436

3537
setuptools.setup(

testing/constraints-3.7.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ protobuf==3.19.5
1111
pymemcache==2.1.0
1212
redis==3.0.0
1313
pytz==2018.3
14+
# TODO(https://github.com/googleapis/python-ndb/issues/913) remove this dependency once six is no longer used in the codebase
15+
six==1.12.0

0 commit comments

Comments
 (0)