-
-
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.
- Loading branch information
Showing
28 changed files
with
103 additions
and
104 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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
[codespell] | ||
skip = *.asdf,*.fits,*.fts,*.header,*.json,*.xsh,*cache*,*egg*,*extern*,.git,.idea,.tox,_build,*truncated,*.svg,.asv_env,.history | ||
ignore-words-list = | ||
afile, | ||
alog, | ||
datas, | ||
nd, | ||
nin, | ||
observ, | ||
ot, | ||
te, | ||
upto, | ||
afile, | ||
precess, | ||
precessed, | ||
precess | ||
sav, | ||
te, | ||
upto |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
"author_email": "[email protected]", | ||
"project_url": "https://sunpy.org", | ||
"license": "BSD 3-Clause", | ||
"minimum_python_version": "3.9", | ||
"minimum_python_version": "3.10", | ||
"use_compiled_extensions": "n", | ||
"enable_dynamic_dev_versions": "y", | ||
"include_example_code": "n", | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ authors = [ | |
{ name = "The SunPy Community", email = "[email protected]" }, | ||
] | ||
dependencies = [ | ||
"scipy>=1.10.0,!=1.10.0", | ||
"scipy>=1.10.1", | ||
"sunpy[map,net,timeseries,visualization]>=6.0.0" | ||
] | ||
dynamic = ["version"] | ||
|
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,34 +1,13 @@ | ||
""" | ||
Sunkit-instruments | ||
sunkit-instruments | ||
================== | ||
A SunPy-affiliated package for solar instrument-specific tools. | ||
A SunPy Affiliated Package for solar instrument-specific tools. | ||
* Homepage: https://sunpy.org | ||
* Documentation: https://docs.sunpy.org/projects/sunkit-instruments/en/latest/ | ||
* Source code: https://github.com/sunpy/sunkit-instruments | ||
""" | ||
|
||
import sys | ||
|
||
from .version import version as __version__ # NOQA | ||
|
||
# Enforce Python version check during package import. | ||
__minimum_python_version__ = "3.7" | ||
|
||
|
||
class UnsupportedPythonError(Exception): | ||
""" | ||
Running on an unsupported version of Python. | ||
""" | ||
|
||
|
||
if sys.version_info < tuple(int(val) for val in __minimum_python_version__.split(".")): | ||
# This has to be .format to keep backwards compatibly. | ||
raise UnsupportedPythonError( | ||
"sunkit_instruments does not support Python < {}".format( | ||
__minimum_python_version__ | ||
) | ||
) | ||
from .version import version as __version__ | ||
|
||
__all__ = ["__version__"] |
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 |
---|---|---|
|
@@ -31,4 +31,4 @@ def func(mocked): | |
mocker.patch(mocked, cache) | ||
return cache | ||
|
||
yield func | ||
return func |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
import numpy as np | ||
import pytest | ||
|
||
import sunpy.map | ||
|
||
from sunkit_instruments import iris | ||
|
Oops, something went wrong.