Fix modin test (#4069)

This commit is contained in:
Philipp Moritz
2019-02-18 12:17:36 -08:00
committed by Robert Nishihara
parent 6e46d75554
commit cfc7e2c5a9
3 changed files with 32 additions and 4 deletions
+9 -1
View File
@@ -84,7 +84,13 @@ class build_ext(_build_ext.build_ext):
for name in filenames:
pyarrow_files.append(os.path.join(root, name))
files_to_include = ray_files + pyarrow_files
# Make sure the relevant files for modin get copied.
modin_files = []
for (root, dirs, filenames) in os.walk("./ray/modin"):
for name in filenames:
modin_files.append(os.path.join(root, name))
files_to_include = ray_files + pyarrow_files + modin_files
# Copy over the autogenerated flatbuffer Python bindings.
for directory in generated_python_directories:
@@ -144,6 +150,8 @@ requires = [
"redis",
# The six module is required by pyarrow.
"six >= 1.0.0",
# The typing module is required by modin.
"typing",
"flatbuffers",
"faulthandler;python_version<'3.3'",
]