Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JP-3768: Move outlier detection median computers to stcal #292

Merged
merged 16 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/292.apichange.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add `outlier_detection` median calculators from jwst.
1 change: 1 addition & 0 deletions docs/stcal/outlier_detection/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ Outlier Detection Utils

description.rst

.. automodapi:: stcal.outlier_detection.median
.. automodapi:: stcal.outlier_detection.utils
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ norecursedirs = [
]
filterwarnings = [
"error::ResourceWarning",
# Files left open by tests can trigger ResourceWarnings during test
# teardown which otherwise would be converted back into a warning
# by pytest. Turn these PytestUnraisableExceptionWarnings back
# into errors
"error::pytest.PytestUnraisableExceptionWarning",
]
markers = [
"soctests",
Expand Down Expand Up @@ -166,6 +171,8 @@ ignore = [
"PLR0913", # Too many arguments
"PLR0915", # Too many statements
"PLR2004", # Magic value used in comparison
"ANN101", # Missing type annotation for self in method
"ANN102", # Missing type annotation for cls in classmethod

# Pydocstyle (to fix over time
"D100", # Undocumented public module
Expand Down
Loading
Loading