From f8cd134857f094768c20c51c6ec626777c8f9c78 Mon Sep 17 00:00:00 2001 From: hannalee2 Date: Fri, 28 Jun 2024 10:42:57 -0700 Subject: [PATCH 1/2] Bug fix: Stage z shows incorrectly on initialization. --- parallax/stage_listener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallax/stage_listener.py b/parallax/stage_listener.py index 9f6e52b..9b59686 100644 --- a/parallax/stage_listener.py +++ b/parallax/stage_listener.py @@ -67,7 +67,7 @@ def __init__(self, stage_info=None): self.name = stage_info["Id"] self.stage_x = stage_info["Stage_X"] * 1000 self.stage_y = stage_info["Stage_Y"] * 1000 - self.stage_z = stage_info["Stage_Z"] * 1000 + self.stage_z = 15000 - stage_info["Stage_Z"] * 1000 self.stage_x_global = None self.stage_y_global = None self.stage_z_global = None From d7e16a14f577c75783d4c0d697ff31b7002c4edb Mon Sep 17 00:00:00 2001 From: hannalee2 Date: Thu, 4 Jul 2024 08:24:51 -0700 Subject: [PATCH 2/2] Update the link for conf.py --- .readthedocs.yaml | 2 +- parallax/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 47c0657..95f2c3f 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -7,7 +7,7 @@ build: # Build from the docs/ directory with Sphinx sphinx: - configuration: docs/conf.py + configuration: docs/source/conf.py # Explicitly set the version of Python and its requirements python: diff --git a/parallax/__init__.py b/parallax/__init__.py index e8e657f..b2a2c7a 100644 --- a/parallax/__init__.py +++ b/parallax/__init__.py @@ -4,7 +4,7 @@ import os -__version__ = "0.37.12" +__version__ = "0.37.13" # allow multiple OpenMP instances os.environ["KMP_DUPLICATE_LIB_OK"] = "True"