Skip to content

Commit

Permalink
FIX: Remove fourdd from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 committed Dec 16, 2024
1 parent b3734a7 commit d6ffd4d
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,26 +132,6 @@ def check_rsl_path(rsl_lib_path, rsl_include_path):

# build the RSL IO and FourDD dealiaser if RSL is installed
if check_rsl_path(rsl_lib_path, rsl_include_path):
fourdd_sources = [
"pyart/correct/src/dealias_fourdd.c",
"pyart/correct/src/sounding_to_volume.c",
"pyart/correct/src/helpers.c",
]

# Cython wrapper around FourDD
extension_4dd = Extension(
"pyart.correct._fourdd_interface",
sources=[
"pyart/correct/_fourdd_interface.pyx",
]
+ fourdd_sources,
libraries=["rsl"],
library_dirs=[rsl_lib_path],
include_dirs=[rsl_include_path, "pyart/correct/src"] + [get_include()],
runtime_library_dirs=[rsl_lib_path],
define_macros=define_macros,
)

# Cython wrapper around RSL io
extension_rsl = Extension(
"pyart.io._rsl_interface",
Expand All @@ -164,7 +144,6 @@ def check_rsl_path(rsl_lib_path, rsl_include_path):
)

extensions.append(extension_rsl)
extensions.append(extension_4dd)

libraries = []
if os.name == "posix":
Expand Down

0 comments on commit d6ffd4d

Please sign in to comment.