Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gcattan authored Oct 3, 2023
1 parent b0ffa4e commit bf5c3d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os.path as op
import numpy
import numpy as np

from setuptools import setup, find_packages, Extension

Expand Down Expand Up @@ -30,7 +30,7 @@
'fastdtw._fastdtw',
[os.path.join('fastdtw', '_fastdtw' + ext)],
language="c++",
include_dirs=[numpy.get_include()], # AND ADDED numpy.get_include()
include_dirs=[np.get_include()], # AND ADDED numpy.get_include()
libraries=["stdc++"]
)],
long_description=long_description,
Expand Down

0 comments on commit bf5c3d8

Please sign in to comment.