summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/pyinterp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/pyinterp.h b/python/pyinterp.h
index 9e1a86a9..4863cbb9 100644
--- a/python/pyinterp.h
+++ b/python/pyinterp.h
@@ -109,10 +109,18 @@ public:
python::object sys_dict = module_sys.attr("__dict__");
python::list paths(sys_dict["path"]);
+#if BOOST_VERSION >= 103700
paths.insert(0, file.parent_path().string());
+#else
+ paths.insert(0, file.branch_path().string());
+#endif
sys_dict["path"] = paths;
+#if BOOST_VERSION >= 103700
import(file.stem());
+#else
+ import(file.string());
+#endif
return true;
}
};