From f000f1c87a8694ffccdb0ba1e5ca7b945ea6486c Mon Sep 17 00:00:00 2001 From: Klaus Wakonig Date: Thu, 1 Jun 2023 19:53:40 +0200 Subject: [PATCH] fix: fixed bec_utils dependency --- bec_client/setup.py | 2 +- device_server/setup.py | 2 +- file_writer/setup.py | 2 +- scan_bundler/setup.py | 2 +- scan_server/setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bec_client/setup.py b/bec_client/setup.py index 980326c8..661983ed 100644 --- a/bec_client/setup.py +++ b/bec_client/setup.py @@ -6,7 +6,7 @@ from setuptools import setup current_path = pathlib.Path(__file__).parent.resolve() -utils = f"{current_path}/../bec_utils/" +utils = f"{current_path}/../bec_client_lib/" bec_client_lib = f"{current_path}/../bec_client_lib/" if __name__ == "__main__": diff --git a/device_server/setup.py b/device_server/setup.py index a576bd5e..77549b96 100644 --- a/device_server/setup.py +++ b/device_server/setup.py @@ -6,7 +6,7 @@ from setuptools import setup current_path = pathlib.Path(__file__).parent.resolve() -utils = f"{current_path}/../bec_utils/" +utils = f"{current_path}/../bec_client_lib/" ophyd_devices = os.getenv("OPHYD_DEVICES_PATH", f"{current_path}/../../ophyd_devices/") diff --git a/file_writer/setup.py b/file_writer/setup.py index 8a4df15a..3f250bb4 100644 --- a/file_writer/setup.py +++ b/file_writer/setup.py @@ -5,7 +5,7 @@ from setuptools import setup current_path = pathlib.Path(__file__).parent.resolve() -utils = f"{current_path}/../bec_utils/" +utils = f"{current_path}/../bec_client_lib/" if __name__ == "__main__": setup(install_requires=["numpy", "h5py", "xmltodict"]) diff --git a/scan_bundler/setup.py b/scan_bundler/setup.py index ab842eae..e4177d28 100644 --- a/scan_bundler/setup.py +++ b/scan_bundler/setup.py @@ -5,7 +5,7 @@ from setuptools import setup current_path = pathlib.Path(__file__).parent.resolve() -utils = f"{current_path}/../bec_utils/" +utils = f"{current_path}/../bec_client_lib/" if __name__ == "__main__": setup(install_requires=["numpy"]) diff --git a/scan_server/setup.py b/scan_server/setup.py index a1e1c96f..b9823597 100644 --- a/scan_server/setup.py +++ b/scan_server/setup.py @@ -5,7 +5,7 @@ from setuptools import setup current_path = pathlib.Path(__file__).parent.resolve() -utils = f"{current_path}/../bec_utils/" +utils = f"{current_path}/../bec_client_lib/" if __name__ == "__main__": setup(install_requires=["numpy", "cytoolz", "rich", "matplotlib"])