Skip to content

Commit

Permalink
Add numpy includes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjeffery committed Jun 27, 2024
1 parent 61763ad commit 67ac547
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import platform

import numpy
from setuptools import Extension
from setuptools import setup

Expand Down Expand Up @@ -36,7 +37,7 @@
extra_compile_args=["-std=c99"],
libraries=libraries,
define_macros=defines,
include_dirs=["lwt_interface", libdir, kastore_dir],
include_dirs=["lwt_interface", libdir, kastore_dir, numpy.get_include()],
)

setup(
Expand Down

0 comments on commit 67ac547

Please sign in to comment.