-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into schema_cleanup
- Loading branch information
Showing
63 changed files
with
750 additions
and
913 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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix broadcasting issues during pixel -> world conversion for models with a Ravel component. |
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 @@ | ||
Refactor various subclasses of VaryingCelestialTransform to centralise the calculations in preparation for improving performance. |
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
import matplotlib | ||
import matplotlib as mpl | ||
|
||
matplotlib.use("Agg") | ||
mpl.use("Agg") | ||
|
||
|
||
def pytest_configure(config): | ||
# pre-cache the IERS file for astropy to prevent downloads | ||
# which will cause errors with remote_data off | ||
from astropy.utils.iers import IERS_Auto; IERS_Auto.open() | ||
from astropy.utils.iers import IERS_Auto | ||
IERS_Auto.open() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from astropy.config import ConfigItem as _AstropyConfigItem | ||
from astropy.config import ConfigNamespace as _AstropyConfigNamespace | ||
|
||
__all__ = ['ConfigItem', 'ConfigNamespace'] | ||
__all__ = ["ConfigItem", "ConfigNamespace"] | ||
|
||
|
||
class ConfigNamespace(_AstropyConfigNamespace): | ||
rootname = 'dkist' | ||
rootname = "dkist" | ||
|
||
|
||
class ConfigItem(_AstropyConfigItem): | ||
rootname = 'dkist' | ||
rootname = "dkist" |
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.