diff options
author | 2021-03-04 11:20:57 -0800 | |
---|---|---|
committer | 2021-03-04 11:20:57 -0800 | |
commit | bca858c89e9012f15c94ce896dbe7ea4fedbc322 (patch) | |
tree | 423adefbf63bcdeab3d26b56cefb4f025fbbe816 /setup.py | |
parent | f51c8bdf36077b3f53cc60ea9633f42a6346f103 (diff) | |
download | WarpX-bca858c89e9012f15c94ce896dbe7ea4fedbc322.tar.gz WarpX-bca858c89e9012f15c94ce896dbe7ea4fedbc322.tar.zst WarpX-bca858c89e9012f15c94ce896dbe7ea4fedbc322.zip |
setup.py: libwarpx*.dll (#1759)
forgotten renaming
Diffstat (limited to '')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ class CopyPreBuild(build): build.run(self) # matches: libwarpx.(2d|3d|rz).(so|pyd) - re_libprefix = re.compile(r"libwarpx\...\.(?:so|pyd)") + re_libprefix = re.compile(r"libwarpx\...\.(?:so|dll)") libs_found = [] for lib_name in os.listdir(PYWARPX_LIB_DIR): if re_libprefix.match(lib_name): |