Skip to content

Commit 82854eb

Browse files
committed
Merging main
2 parents 35ca6f7 + 28b4131 commit 82854eb

58 files changed

Lines changed: 3073 additions & 767 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.bumpclient.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.24.2"
2+
current_version = "0.25.3"
33
commit = true
44
tag = false
55

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.24.2"
2+
current_version = "0.25.3"
33
commit = true
44
tag = true
55

Helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: murfey-services
33
description: Umbrella Helm chart for deploying the servers and daemons needed to enable Murfey to transfer and process data
4-
version: 0.24.2
4+
version: 0.25.3
55
dependencies:
66
- name: murfey-instrument-server-clem
77
- name: murfey-instrument-server-tem
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
name: murfey-instrument-server-clem
33
description: Helm chart for deploying a Murfey instrument server, which executes orders to detect, modify, and transfer files on the instrument PC, and notifies the backend server about transferred files
4-
version: 0.24.2
4+
version: 0.25.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
name: murfey-instrument-server-tem
33
description: Helm chart for deploying a Murfey instrument server, which executes orders to detect, modify, and transfer files on the instrument PC, and notifies the backend server about transferred files
4-
version: 0.24.2
4+
version: 0.25.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
name: murfey-rsync
33
description: Helm chart for deploying an rsync daemon, which is responsible for executing the transfer of files from the client storage directory to the server storage system
4-
version: 0.24.2
4+
version: 0.25.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
name: murfey-server
33
description: Helm chart for deploying a Murfey backend server, which is responsible for orchestrating the data transfer and processing workflow between the client PC and the storage system
4-
version: 0.24.2
4+
version: 0.25.3

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires = [
77

88
[project]
99
name = "murfey"
10-
version = "0.24.2"
10+
version = "0.25.3"
1111
description = "Client-Server architecture hauling Cryo-EM data"
1212
readme = "README.md"
1313
keywords = [
@@ -72,7 +72,8 @@ smartem = [
7272
"smartem-decisions[backend]",
7373
]
7474
sxt = [
75-
"txrm2tiff",
75+
"numpy<3",
76+
"olefile",
7677
]
7778
[project.urls]
7879
Bug-Tracker = "https://github.com/DiamondLightSource/python-murfey/issues"

src/murfey/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import annotations
22

3-
__version__ = "0.24.2"
4-
__supported_client_version__ = "0.24.2"
3+
__version__ = "0.25.3"
4+
__supported_client_version__ = "0.25.3"

src/murfey/cli/repost_failed_calls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ def handle_failed_posts(messages_path: list[Path], murfey_db: Session):
9393
# These imports need to happen after transport object is configured
9494
import murfey.server.api.auth
9595
import murfey.server.api.bootstrap
96-
import murfey.server.api.clem
9796
import murfey.server.api.display
9897
import murfey.server.api.file_io_frontend
9998
import murfey.server.api.file_io_instrument
@@ -106,6 +105,7 @@ def handle_failed_posts(messages_path: list[Path], murfey_db: Session):
106105
import murfey.server.api.session_info
107106
import murfey.server.api.websocket
108107
import murfey.server.api.workflow
108+
import murfey.server.api.workflow_clem
109109

110110
for json_file in messages_path:
111111
with open(json_file, "r") as json_data:

0 commit comments

Comments
 (0)