Skip to content

Commit 03262fa

Browse files
test
1 parent 0de304c commit 03262fa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from setuptools import setup, find_packages
88
from pybind11.setup_helpers import Pybind11Extension, build_ext
99

10-
__version__ = "0.0.5"
10+
__version__ = "0.0.6-rc1"
1111

1212
def main():
1313
cwd = os.path.dirname(os.path.abspath(__file__))
@@ -18,6 +18,8 @@ def main():
1818
Pybind11Extension(
1919
"tensor_array._ext",
2020
sources = glob.glob(os.path.join("cpp", "*.cc")),
21+
include_dirs=["usr/local/include"],
22+
library_dirs=["usr/local/lib", "usr/local/lib64"],
2123
libraries=["tensorarray_core", "tensorarray_layers"],
2224
define_macros=[("VERSION_INFO", __version__)],
2325
),

0 commit comments

Comments
 (0)