From e095c7fbbf6e62e7c782119c5d285d0b108922e3 Mon Sep 17 00:00:00 2001 From: David Law Date: Fri, 12 Jan 2024 11:57:18 -0500 Subject: [PATCH 1/2] JP-3501: Turn off emicorr by default (#8171) Co-authored-by: Howard Bushouse --- CHANGES.rst | 15 +++++++++------ jwst/emicorr/emicorr_step.py | 1 + 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4bdc899d4f..43909ae93a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,12 @@ - +emicorr +------- + +- Set skip=True by default in the code, to be turned on later by a parameter + reference file. [#8171] + 1.13.3 (01-05-2024) =================== @@ -23,18 +29,13 @@ documentation - Removed unused ``grow`` parameter from ``outlier_detection`` docs. [#8156] -outlier_detection ------------------ - -- Removed the ``grow`` parameter from the step arguments, because it's no - longer used in the algorithms. [#8156] - ramp_fitting ------------ - Updated the argument description and parameter definition for `maximum_cores` to accept integer values to be passed to STCAL ramp_fit.py. [#8123] + 1.13.2 (2023-12-21) =================== @@ -44,6 +45,7 @@ emicorr - Fix another bug with subarray=Full. [#8151] - Speeding up the code and fixing case of subarray not in ref file. [#8152] + 1.13.1 (2023-12-19) =================== @@ -58,6 +60,7 @@ other - Fix a typo in ``__version_commit__`` string. [#8145] + 1.13.0 (2023-12-15) =================== diff --git a/jwst/emicorr/emicorr_step.py b/jwst/emicorr/emicorr_step.py index 84622dc0b6..a44b69099a 100755 --- a/jwst/emicorr/emicorr_step.py +++ b/jwst/emicorr/emicorr_step.py @@ -22,6 +22,7 @@ class EmiCorrStep(Step): nints_to_phase = integer(default=None) # Number of integrations to phase nbins = integer(default=None) # Number of bins in one phased wave scale_reference = boolean(default=True) # If True, the reference wavelength will be scaled to the data's phase amplitude + skip = boolean(default=True) """ reference_file_types = ['emicorr'] From d22c0ee4c7f621c7f56ed65c90fa0775c95d5b55 Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Thu, 25 Jan 2024 10:47:12 -0500 Subject: [PATCH 2/2] update metadata for release --- CHANGES.rst | 8 +++++--- CITATION.cff | 4 ++-- README.md | 3 ++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 43909ae93a..9ff2e0b814 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,10 @@ -1.13.4 (unreleased) +1.13.5 (unreleased) =================== -- +- + +1.13.4 (2024-01-25) +=================== emicorr ------- @@ -9,7 +12,6 @@ emicorr - Set skip=True by default in the code, to be turned on later by a parameter reference file. [#8171] - 1.13.3 (01-05-2024) =================== diff --git a/CITATION.cff b/CITATION.cff index e3bf06a6b3..7070af8869 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -75,7 +75,7 @@ authors: given-names: "Maria" orcid: "https://orcid.org/0000-0003-2314-3453" title: "JWST Calibration Pipeline" -version: 1.13.3 +version: 1.13.4 doi: 10.5281/zenodo.7038885 -date-released: 2024-01-05 +date-released: 2024-01-25 url: "https://github.com/spacetelescope/jwst" diff --git a/README.md b/README.md index 0dbb268d76..57cd8d7b5f 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,8 @@ the specified context and less than the context for the next release. | jwst tag | DMS build | SDP_VER | CRDS_CONTEXT | Released | Ops Install | Notes | |---------------------|-----------|----------|--------------|------------|-------------|-----------------------------------------------| -| 1.13.3 | B10.1rc4 | 2023.4.0 | 1181 | 2024-01-05 | | Fourth release candidate for B10.1 | +| 1.13.4 | | | 1185 | 2024-01-25 | | PyPI-only release for external users | +| 1.13.3 | B10.1rc4 | 2023.4.0 | 1181 | 2024-01-05 | | Final release candidate for B10.1 | | 1.13.2 | B10.1rc3 | 2023.4.0 | 1181 | 2023-12-21 | | Third release candidate for B10.1 | | 1.13.1 | B10.1rc2 | 2023.4.0 | 1181 | 2023-12-19 | | Second release candidate for B10.1 | | 1.13.0 | B10.1rc1 | 2023.4.0 | 1179 | 2023-12-15 | | First release candidate for B10.1 |