Skip to content

Commit

Permalink
Remember how to define a dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
spxiwh committed Apr 26, 2024
1 parent 6d15561 commit ac06920
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ def pkgconfig(package, kw):

# Set extension arguments
extension_kwargs = {
include_dirs=[numpy.get_include()],
language="c",
libraries=["lal"],
extra_compile_args=cython_compile_args,
extra_link_args=[],
'include_dirs': [numpy.get_include()],
'language': "c",
'libraries': ["lal"],
'extra_compile_args': cython_compile_args,
'extra_link_args': [],
}

# lal arguments
Expand Down

0 comments on commit ac06920

Please sign in to comment.