sdfr 1.4.2__py3-none-win32.whl → 1.4.3__py3-none-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
sdfr/_commit_info.py CHANGED
@@ -1,2 +1,2 @@
1
- __commit_date__ = "Fri Jun 6 11:53:05 2025 +0100"
2
- __commit_id__ = "5dcc8bbaddd76aaeb5f5c8d335b32f272fd3e05e"
1
+ __commit_date__ = "Tue Jun 10 10:08:15 2025 +0100"
2
+ __commit_id__ = "78518bb920d66415e43857a26b0e7f914bd05da1"
sdfr/loadlib.py CHANGED
@@ -40,9 +40,9 @@ def _loadlib():
40
40
  local_dir = Path(__file__).resolve().parent
41
41
  site_dirs = [Path(x) / "sdfr" for x in getsitepackages()]
42
42
  path_dirs = [Path(x) for x in sys.path]
43
- exts = ("so", "dylib", "dll")
44
- for lib_dir, ext in product([local_dir, *site_dirs, *path_dirs], exts):
45
- if (lib := lib_dir / f"libsdfc_shared.{ext}").exists():
43
+ libs = ("libsdfc_shared.so", "libsdfc_shared.dylib", "sdfc_shared.dll")
44
+ for lib_dir, libname in product([local_dir, *site_dirs, *path_dirs], libs):
45
+ if (lib := lib_dir / libname).exists():
46
46
  return ct.cdll.LoadLibrary(str(lib))
47
47
  raise RuntimeError("Could not find library 'libsdfc_shared'")
48
48
 
sdfr/sdfc_shared.dll CHANGED
Binary file
sdfr/sdfc_shared.lib ADDED
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: sdfr
3
- Version: 1.4.2
3
+ Version: 1.4.3
4
4
  Summary: Python module for processing SDF files
5
5
  Author-Email: Keith Bennett <k.bennett@warwick.ac.uk>
6
6
  Requires-Dist: numpy
@@ -0,0 +1,12 @@
1
+ sdfr/__init__.py,sha256=OxcJAJ0ADoE54vgqMQqxhoFWyU2ldb3fb-_LFyeZZfQ,1209
2
+ sdfr/_commit_info.py,sha256=m_JZRhDwnK9FYuMipiiKsSYgntEAJH7hyVCQZetAD-c,112
3
+ sdfr/loadlib.py,sha256=xxp5MX-u7ZHIc12mcvN-y8L5UEjY-aEgINj2r-1swWk,2358
4
+ sdfr/SDF.py,sha256=bt4DOuOTmbc_lvtTBz7khVtbaFStiO6RKN2FAq3DjrI,31144
5
+ sdfr/sdf_helper.py,sha256=cI6F9531e7hbp6oe_hnjPi9pdl6QddsTbohqlNdyg6c,63755
6
+ sdfr/sdfc_shared.dll,sha256=Ruh6tS3GlTuhk3GO-lFOja7mKAFjqe9emE7962nL3Vg,102400
7
+ sdfr/sdfc_shared.lib,sha256=3tq7FEdM0AIZ5XN6oilKzMfrbTk29r7JWvPq5UQpJw0,3652
8
+ sdfr-1.4.3.dist-info/METADATA,sha256=GTu3uSmFPTzK-K8j6cSPzDZHP7XzslpP6v1KnVi6cZU,370
9
+ sdfr-1.4.3.dist-info/WHEEL,sha256=2gMiQ9URLdcVSVn--wWLd3wXucnRxZtbu4ekGokbEAk,99
10
+ sdfr-1.4.3.dist-info/licenses/LICENSE,sha256=gpLeavs1KxgJFrpL_uVDh0MoDvPfJoZ89A5dSCl4P5U,1652
11
+ sdfr-1.4.3.dist-info/licenses/LICENSE_README.txt,sha256=KlBSoHArwoXbiygx3IJTjtgM7hLNO9o8ZMlZV77nrXs,235
12
+ sdfr-1.4.3.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- sdfr/__init__.py,sha256=OxcJAJ0ADoE54vgqMQqxhoFWyU2ldb3fb-_LFyeZZfQ,1209
2
- sdfr/_commit_info.py,sha256=jwTvStv8tg4Qb70lnQJKYmLqt8iKXFkCWyjp6Nny_v8,111
3
- sdfr/loadlib.py,sha256=EMcnZhh68fS72Bjv8QtfDzPbowx1FfaqX4TPhDl-o94,2328
4
- sdfr/SDF.py,sha256=bt4DOuOTmbc_lvtTBz7khVtbaFStiO6RKN2FAq3DjrI,31144
5
- sdfr/sdf_helper.py,sha256=cI6F9531e7hbp6oe_hnjPi9pdl6QddsTbohqlNdyg6c,63755
6
- sdfr/sdfc_shared.dll,sha256=gFEUnchXoZ0R7kaItozUs8g7oqDt6Qd1fxgLH5A-6P8,11264
7
- sdfr-1.4.2.dist-info/METADATA,sha256=qv9qETHA5SXPuwveGOfKF2t8B3sUMBgvpV6j7hda6tI,370
8
- sdfr-1.4.2.dist-info/WHEEL,sha256=2gMiQ9URLdcVSVn--wWLd3wXucnRxZtbu4ekGokbEAk,99
9
- sdfr-1.4.2.dist-info/licenses/LICENSE,sha256=gpLeavs1KxgJFrpL_uVDh0MoDvPfJoZ89A5dSCl4P5U,1652
10
- sdfr-1.4.2.dist-info/licenses/LICENSE_README.txt,sha256=KlBSoHArwoXbiygx3IJTjtgM7hLNO9o8ZMlZV77nrXs,235
11
- sdfr-1.4.2.dist-info/RECORD,,
File without changes