-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jumpdetection_speedup
- Loading branch information
Showing
22 changed files
with
504 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,4 @@ jobs: | |
envs: | | ||
- linux: py311-jwst-cov-xdist | ||
- linux: py311-romancal-cov-xdist | ||
coverage: codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Update downstream tests for jwst and romancal to fix pytest configurations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Changed the default `ramp fitting` CI test algorithm to ``OLS_C``. This also revealed | ||
a bug in control flow that allowed for the CHARGELOSS recalculation in error, which | ||
resulted in a crash while attempting to dereference a ``NULL`` pointer. Further, when | ||
creating the optional results product, the object creation was changed to `PyArray_ZEROS` | ||
to ensure invalid data was set to zero. The use of `PyArray_EMPTY` does not initialize | ||
memory, so junk data could be in used array elements. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add infrastructure for testing memory usage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Preparing ramp fitting for the upgrade to python 3.13. In python 3.13, the C-API | ||
function ``PyLong_AsLong`` raises an exception if the object passed to it is | ||
``NoneType``. There are two integer attributes for the ``RampData`` class that | ||
can be ``NoneType``, so a check for ``NoneType`` for these attributes was added. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix `IntEnum` saturation flag issue with numpy 2+ for romancal. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add wcs_from_sregions function to compute a combined WCS from a list of s_regions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Deprecate wcs_from_footprints. Use wcs_from_sregions instead. |
Oops, something went wrong.