-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RCAL-911 & 932: remove units from MOS and ELP pipelines. (#405)
Co-authored-by: Eddie Schlafly <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Paul Huwe <[email protected]>
- Loading branch information
1 parent
065b958
commit a4542f1
Showing
7 changed files
with
61 additions
and
151 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Remove units from roman_datamodels. |
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 |
---|---|---|
|
@@ -3,9 +3,7 @@ name = "roman_datamodels" | |
description = "data models supporting calibration of the Nancy Grace Roman Space Telescope" | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
authors = [ | ||
{ name = "STScI", email = "[email protected]" }, | ||
] | ||
authors = [{ name = "STScI", email = "[email protected]" }] | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Astronomy", | ||
|
@@ -22,9 +20,7 @@ dependencies = [ | |
"rad @ git+https://github.com/spacetelescope/rad.git", | ||
"asdf-standard >=1.1.0", | ||
] | ||
dynamic = [ | ||
"version", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.license] | ||
file = "LICENSE" | ||
|
@@ -36,9 +32,7 @@ test = [ | |
"pytest-doctestplus >=0.10.0", | ||
"pytest-env >= 0.8", | ||
] | ||
aws = [ | ||
"stsci-aws-utils >= 0.1.2", | ||
] | ||
aws = ["stsci-aws-utils >= 0.1.2"] | ||
docs = [ | ||
"sphinx", | ||
"sphinx-automodapi", | ||
|
@@ -55,39 +49,28 @@ repository = "https://github.com/spacetelescope/roman_datamodels" | |
roman_datamodels = "roman_datamodels.stnode._integration:get_extensions" | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools >=61", | ||
"setuptools_scm[toml] >=3.4", | ||
"wheel", | ||
] | ||
requires = ["setuptools >=61", "setuptools_scm[toml] >=3.4", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "src/roman_datamodels/_version.py" | ||
|
||
[tool.setuptools.packages.find] | ||
where = [ | ||
"src", | ||
] | ||
where = ["src"] | ||
|
||
[tool.pytest.ini_options] | ||
minversion = 4.6 | ||
doctest_plus = true | ||
doctest_rst = true | ||
text_file_format = "rst" | ||
addopts = "--color=yes --doctest-rst" | ||
testpaths = [ | ||
"tests", | ||
] | ||
testpaths = ["tests"] | ||
filterwarnings = [ | ||
"error", | ||
"ignore:numpy.ndarray size changed:RuntimeWarning", | ||
"ignore:The `hash` argument is deprecated in favor of `unsafe_hash` and will be removed in or after August 2025:DeprecationWarning", | ||
] | ||
env = [ | ||
"ROMAN_VALIDATE=true", | ||
"ROMAN_STRICT_VALIDATION=true", | ||
] | ||
env = ["ROMAN_VALIDATE=true", "ROMAN_STRICT_VALIDATION=true"] | ||
|
||
[tool.coverage.report] | ||
exclude_lines = [ | ||
|
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
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
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
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
Oops, something went wrong.