We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de304c commit 03262faCopy full SHA for 03262fa
setup.py
@@ -7,7 +7,7 @@
7
from setuptools import setup, find_packages
8
from pybind11.setup_helpers import Pybind11Extension, build_ext
9
10
-__version__ = "0.0.5"
+__version__ = "0.0.6-rc1"
11
12
def main():
13
cwd = os.path.dirname(os.path.abspath(__file__))
@@ -18,6 +18,8 @@ def main():
18
Pybind11Extension(
19
"tensor_array._ext",
20
sources = glob.glob(os.path.join("cpp", "*.cc")),
21
+ include_dirs=["usr/local/include"],
22
+ library_dirs=["usr/local/lib", "usr/local/lib64"],
23
libraries=["tensorarray_core", "tensorarray_layers"],
24
define_macros=[("VERSION_INFO", __version__)],
25
),
0 commit comments