Skip to content

Commit 056c04a

Browse files
Default to durin plugin (#48)
1 parent b012741 commit 056c04a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: HISTORY.rst

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ History
55
2.0.0 (xxxx-xx-xx)
66
------------------
77
* fast_dp no longer supports Python 2.7 or 3.5
8+
* change default plugin for Eiger data to durin-plugin.so
89

910
1.6.2 (2020-03-14)
1011
------------------

Diff for: fast_dp/image_readers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_dectris_serial_no(record):
3030

3131
def find_hdf5_lib(lib_name=None):
3232
if not hasattr(find_hdf5_lib, "cache"):
33-
lib_name = lib_name or "dectris-neggia.so"
33+
lib_name = lib_name or "durin-plugin.so"
3434
for d in os.environ["PATH"].split(os.pathsep):
3535
if os.path.exists(os.path.join(d, lib_name)):
3636
library = os.path.join(d, lib_name)

0 commit comments

Comments
 (0)