mirror of
https://github.com/ivan-usov-org/bec.git
synced 2025-04-22 02:20:02 +02:00
0.52.7
Automatically generated by python-semantic-release
This commit is contained in:
parent
f1626336b2
commit
d579d22f5b
@ -2,6 +2,14 @@
|
|||||||
|
|
||||||
<!--next-version-placeholder-->
|
<!--next-version-placeholder-->
|
||||||
|
|
||||||
|
## v0.52.7 (2023-12-18)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
* Fixed import of device manager ([`f162633`](https://gitlab.psi.ch/bec/bec/-/commit/f1626336b271b8a231ca46e175ae845ba4071eb6))
|
||||||
|
* Service should wait for device info ([`67b292f`](https://gitlab.psi.ch/bec/bec/-/commit/67b292fa0d5ab67cf945db6d12a1f92db642d3a3))
|
||||||
|
* Wait for scihub server to become ready ([`77232ac`](https://gitlab.psi.ch/bec/bec/-/commit/77232ac75f12acc9a754a2b5dcd76fa922340b7b))
|
||||||
|
|
||||||
## v0.52.6 (2023-12-18)
|
## v0.52.6 (2023-12-18)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
@ -10,7 +10,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
|
|||||||
bec_lib = f"{current_path}/../bec_lib/"
|
bec_lib = f"{current_path}/../bec_lib/"
|
||||||
|
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
setup(
|
setup(
|
||||||
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||||||
|
|
||||||
current_path = pathlib.Path(__file__).parent.resolve()
|
current_path = pathlib.Path(__file__).parent.resolve()
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
|
|||||||
bec_lib = f"{current_path}/../bec_lib/"
|
bec_lib = f"{current_path}/../bec_lib/"
|
||||||
|
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -11,7 +11,7 @@ bec_lib = f"{current_path}/../bec_lib/"
|
|||||||
|
|
||||||
ophyd_devices = os.getenv("OPHYD_DEVICES_PATH", f"{current_path}/../../ophyd_devices/")
|
ophyd_devices = os.getenv("OPHYD_DEVICES_PATH", f"{current_path}/../../ophyd_devices/")
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
|
|||||||
|
|
||||||
bec_lib = f"{current_path}/../bec_lib/"
|
bec_lib = f"{current_path}/../bec_lib/"
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
|
|||||||
|
|
||||||
bec_lib = f"{current_path}/../bec_lib/"
|
bec_lib = f"{current_path}/../bec_lib/"
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
|
|||||||
|
|
||||||
bec_lib = f"{current_path}/../bec_lib/"
|
bec_lib = f"{current_path}/../bec_lib/"
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -10,7 +10,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
|
|||||||
bec_lib = f"{current_path}/../bec_lib/"
|
bec_lib = f"{current_path}/../bec_lib/"
|
||||||
|
|
||||||
|
|
||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
|
||||||
|
|
||||||
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
def run_install(setup_args: dict, bec_deps: list, editable=False):
|
||||||
|
@ -1 +1 @@
|
|||||||
__version__ = "0.52.6"
|
__version__ = "0.52.7"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user