From af63158e77e460104b18c7ee04cbd8f8517ed018 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Thu, 9 Nov 2023 19:58:10 +0000 Subject: [PATCH 1/3] #126 Fix wrong selection for off-source samples --- decode/qlook.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/decode/qlook.py b/decode/qlook.py index 32b4d94..272e870 100644 --- a/decode/qlook.py +++ b/decode/qlook.py @@ -71,7 +71,7 @@ def contmap( exclude=exclude_mkid_ids, ) da_on = select.by(da, "state", include="SCAN") - da_off = select.by(da, "state", exclude="TRAN") + da_off = select.by(da, "state", exclude="SCAN") # subtract temporal baseline da_base = ( @@ -176,7 +176,7 @@ def skydip( exclude=exclude_mkid_ids, ) da_on = select.by(da, "state", include="SCAN") - da_off = select.by(da, "state", exclude="GRAD") + da_off = select.by(da, "state", exclude="SCAN") # plotting weight = da_off.std("time") ** -2 @@ -242,7 +242,7 @@ def zscan( exclude=exclude_mkid_ids, ) da_on = select.by(da, "state", include="ON") - da_off = select.by(da, "state", exclude="GRAD") + da_off = select.by(da, "state", exclude="ON") # plotting weight = da_off.std("time") ** -2 From f71ae556ac3a01bd164100b6f1e0fea93eb9216d Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Thu, 9 Nov 2023 22:24:15 +0000 Subject: [PATCH 2/3] =?UTF-8?q?#126=20Update=20package=20version=20(2.7.0?= =?UTF-8?q?=20=E2=86=92=202.7.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CITATION.cff | 2 +- README.md | 2 +- decode/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 8cdc375..a2febf5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,7 +3,7 @@ message: "If you use this software, please cite it as below." title: "de:code" abstract: "DESHIMA code for data analysis" -version: 2.7.0 +version: 2.7.1 date-released: 2023-11-08 license: "MIT" doi: "10.5281/zenodo.3384216" diff --git a/README.md b/README.md index 32b05c0..9af0fad 100644 --- a/README.md +++ b/README.md @@ -11,5 +11,5 @@ DESHIMA code for data analysis ## Installation ```shell -pip install decode==2.7.0 +pip install decode==2.7.1 ``` diff --git a/decode/__init__.py b/decode/__init__.py index 15ecf84..dc651b8 100644 --- a/decode/__init__.py +++ b/decode/__init__.py @@ -9,7 +9,7 @@ "qlook", "select", ] -__version__ = "2.7.0" +__version__ = "2.7.1" # submodules diff --git a/pyproject.toml b/pyproject.toml index a621740..2af8c63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "decode" -version = "2.7.0" +version = "2.7.1" description = "DESHIMA code for data analysis" authors = ["Akio Taniguchi "] keywords = [ From 469fc469f305e4807c6d8acbfacebde5ce05f06c Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Thu, 9 Nov 2023 22:32:01 +0000 Subject: [PATCH 3/3] #126 Update release date --- CITATION.cff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CITATION.cff b/CITATION.cff index a2febf5..4200416 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,7 +4,7 @@ message: "If you use this software, please cite it as below." title: "de:code" abstract: "DESHIMA code for data analysis" version: 2.7.1 -date-released: 2023-11-08 +date-released: 2023-11-09 license: "MIT" doi: "10.5281/zenodo.3384216" url: "https://github.com/deshima-dev/decode"