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 1db919b commit 52ca956Copy full SHA for 52ca956
setup.py
@@ -46,15 +46,18 @@
46
# compile with: python setup.py build_ext -i
47
# clean up with: python setup.py clean --all
48
if sys.platform == 'darwin':
49
- extra_compiler_args = ['-stdlib=libc++']
+ # see https://github.com/pandas-dev/pandas/issues/23424
50
+ extra_compiler_args = ['-stdlib=libc++'] # not needed #, '-mmacosx-version-min=10.9']
51
else:
52
extra_compiler_args = []
53
54
ext_modules = [Extension("caiman.source_extraction.cnmf.oasis",
55
sources=["caiman/source_extraction/cnmf/oasis.pyx"],
56
include_dirs=[np.get_include()],
57
language="c++",
- extra_compile_args = extra_compiler_args)]
58
+ extra_compile_args = extra_compiler_args,
59
+ extra_link_args = extra_compiler_args,
60
+ )]
61
62
setup(
63
name='caiman',
0 commit comments