From e45dc948e9e7ab9033a92e3bdabbe805985de515 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Fri, 15 Sep 2023 00:11:27 +0100 Subject: [PATCH] setup.py: Add lmdb dependency This has actually been a required dependency since e710d4baddafa87aec6b5c2c04c8586ed6dd7678. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 93d4d2c35..a38815b22 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ if sys.version_info[:2] < (3, 7): # Depends on PyQt5, but setuptools cannot check for it. requirements = [ "numpy", "scipy", - "python-dateutil", "prettytable", "h5py", + "python-dateutil", "prettytable", "h5py", "lmdb", "qasync", "pyqtgraph", "pygit2", "llvmlite", "pythonparser", "levenshtein", ]