Remove six and cloudpickle from setup.py. (#7694)

This commit is contained in:
Robert Nishihara
2020-03-23 11:42:05 -07:00
committed by GitHub
parent 1a0c9228d0
commit ee8c9ff732
15 changed files with 20 additions and 67 deletions
@@ -1,8 +1,6 @@
# This file is used by CrossLanguageInvocationTest.java to test cross-language
# invocation.
import six
import ray
@@ -63,4 +61,4 @@ class Counter(object):
def increase(self, delta):
self.value += int(delta)
return str(self.value).encode("utf-8") if six.PY3 else str(self.value)
return str(self.value).encode("utf-8")