Skip to content

Commit

Permalink
fix some install issues, still pickle test problems
Browse files Browse the repository at this point in the history
  • Loading branch information
cchapmanbird committed Nov 18, 2024
1 parent 8f877f4 commit dd1d6fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
channels: conda-forge
environment-file: ./.ci-environments/macos-arm-environment.yml
activate-environment: test_install_env

- name: Install multispline (temporary)
run: python -m pip install git+https://github.com/cchapmanbird/multispline.git

- name: Run Prebuild
run: |
Expand Down
7 changes: 0 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,12 +313,6 @@ def build_extensions(self):
)
cpu_extension["include_dirs"] += gsl_include

Interp2DAmplitude_ext = Extension(
"pyInterp2DAmplitude",
sources=["src/Interpolant.cc", "src/Amplitude.cc", "src/pyinterp2damp.pyx"],
**cpu_extension,
)

matmul_cpu_ext = Extension(
"pymatmul_cpu", sources=["src/matmul.cpp", "src/pymatmul_cpu.pyx"], **cpu_extension
)
Expand All @@ -344,7 +338,6 @@ def build_extensions(self):
cpu_extensions = [
matmul_cpu_ext,
interp_cpu_ext,
Interp2DAmplitude_ext,
AAK_cpu_ext,
amp_interp_2d_ext,
]
Expand Down

0 comments on commit dd1d6fb

Please sign in to comment.