Skip to content

Commit 17e49a4

Browse files
committed
Rename STKFMM.py to PySTKFMM.py to replace old shared object fully
1 parent 48bdc71 commit 17e49a4

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

Python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
if(PyInterface)
22
# FIXME: We should just move all python stuff to pip
3-
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/STKFMM.py DESTINATION ${CMAKE_INSTALL_LIBDIR}/python)
3+
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/PySTKFMM.py DESTINATION ${CMAKE_INSTALL_LIBDIR}/python)
44

55
endif()
File renamed without changes.

Python/example.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
from mpi4py import MPI
22
import numpy as np
33
import timer
4-
# FIXME: Rename to PySTKFMM when no collision with .so
5-
from STKFMM import Stk3DFMM, DArray, KERNEL
4+
from PySTKFMM import Stk3DFMM, DArray, KERNEL
65
import kernels as kr
76

87
# Get MPI parameters

0 commit comments

Comments
 (0)