From 1140009cdd5d7efede4ee55ef4398d6c0e875b8d Mon Sep 17 00:00:00 2001 From: John ZuHone Date: Tue, 11 Jun 2019 00:04:34 -0400 Subject: [PATCH 1/2] Updated FP temperature limits --- acis_thermal_check/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acis_thermal_check/utils.py b/acis_thermal_check/utils.py index 21a6a7c1..f51b5801 100644 --- a/acis_thermal_check/utils.py +++ b/acis_thermal_check/utils.py @@ -387,8 +387,8 @@ def get_acis_limits(msid): if msid == "fptemp": fp_sens = -118.7 - acis_i = -114.0 - acis_s = -112.0 + acis_i = -112.0 + acis_s = -111.0 return fp_sens, acis_i, acis_s yellow_lo = None From bcd4af59f4950f6523cdba37cf2cdff64c83414e Mon Sep 17 00:00:00 2001 From: John ZuHone Date: Tue, 11 Jun 2019 07:40:17 -0400 Subject: [PATCH 2/2] Bumping version --- acis_thermal_check/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acis_thermal_check/__init__.py b/acis_thermal_check/__init__.py index f402b0eb..b85b2558 100644 --- a/acis_thermal_check/__init__.py +++ b/acis_thermal_check/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.8.0" +__version__ = "2.9.0" from acis_thermal_check.main import \ ACISThermalCheck, \