We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59c9ba7 commit 9600d61Copy full SHA for 9600d61
setup.py
@@ -33,8 +33,12 @@
33
34
# clean cython output is clean is called
35
if "clean" in sys.argv[1:]:
36
- if os.path.isfile("ot/lp/emd_wrap.cpp"):
37
- os.remove("ot/lp/emd_wrap.cpp")
+ for cpp_file in [
+ "ot/lp/emd_wrap.cpp",
38
+ "ot/partial/partial_cython.cpp",
39
+ ]:
40
+ if os.path.isfile(cpp_file):
41
+ os.remove(cpp_file)
42
43
# add platform dependant optional compilation argument
44
openmp_supported, flags = check_openmp_support()
0 commit comments