-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
increase min sunpy #63
Open
nabobalis
wants to merge
6
commits into
main
Choose a base branch
from
sunpy_version
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a9511eb
increase min sunpy
nabobalis cc08f79
Handle old functions and update examples
nabobalis 1f03469
bug in sunpy 6.0.0 means we need to wait for bugfix release
nabobalis 0c2ba7f
Merge branch 'main' into sunpy_version
nabobalis 4f9bd41
Merge branch 'main' into sunpy_version
nabobalis c743680
Merge branch 'main' of github.com:sunpy/sunkit-magex into sunpy_version
nabobalis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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,22 @@ | ||
1.0.0 (2024-05-31) | ||
================== | ||
|
||
This is the first release and aims to keep the API the same from `pfsspy` to | ||
`sunkit_magex`. The main difference is that you will need to replace the | ||
import like so: | ||
|
||
.. code-block:: python | ||
# Before | ||
import pfsspy | ||
from pfsspy import tracing | ||
# After | ||
from sunkit_magex import pfss as pfsspy | ||
from sunkit_magex.pfss import tracing | ||
The main changes from the previous release of `pfsspy` are as follows: | ||
|
||
* The ``GongSynopticMap`` class has moved into `sunpy`, note that the new | ||
class in ``sunpy`` is slightly different in that it does not modify the | ||
header. |
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 @@ | ||
Made streamtracer a hard dependency of sunkit-magex. |
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 @@ | ||
Deprecated the following pfss utils: | ||
|
||
- pfss.utils.fix_hmi_meta | ||
- pfss.utils.load_adapt | ||
|
||
These functions are no longer needed and will be removed. |
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 @@ | ||
Increased the minimum required version of ``sunpy`` to v6.0.0. |
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,34 @@ | ||
========= | ||
Changelog | ||
========= | ||
|
||
.. note:: | ||
|
||
This README was adapted from the pytest changelog readme under the terms of the MIT licence. | ||
|
||
This directory contains "news fragments" which are short files that contain a small **ReST**-formatted text that will be added to the next ``CHANGELOG``. | ||
|
||
The ``CHANGELOG`` will be read by users, so this description should be aimed at SunPy users instead of describing internal changes which are only relevant to the developers. | ||
|
||
Make sure to use full sentences with correct case and punctuation, for example:: | ||
|
||
Add support for Helioprojective coordinates in `sunpy.coordinates.frames`. | ||
|
||
Please try to use Sphinx intersphinx using backticks. | ||
|
||
Each file should be named like ``<PULL REQUEST>.<TYPE>[.<COUNTER>].rst``, where ``<PULL REQUEST>`` is a pull request number, ``COUNTER`` is an optional number if a PR needs multiple entries with the same type and ``<TYPE>`` is one of: | ||
|
||
* ``breaking``: A change which requires users to change code and is not backwards compatible. (Not to be used for removal of deprecated features.) | ||
* ``feature``: New user facing features and any new behavior. | ||
* ``bugfix``: Fixes a reported bug. | ||
* ``doc``: Documentation addition or improvement, like rewording an entire session or adding missing docs. | ||
* ``deprecation``: Feature deprecation | ||
* ``removal``: Feature removal. | ||
* ``trivial``: A change which has no user facing effect or is tiny change. | ||
|
||
So for example: ``123.feature.rst``, ``456.bugfix.rst``. | ||
|
||
If you are unsure what pull request type to use, don't hesitate to ask in your PR. | ||
|
||
Note that the ``towncrier`` tool will automatically reflow your text, so it will work best if you stick to a single paragraph, but multiple sentences and links are OK and encouraged. | ||
You can install ``towncrier`` and then run ``towncrier --draft`` if you want to get a preview of how your change will look in the final release notes. |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
examples/internals/plot_computation_grid.py → examples/internals/computation_grid.py
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I plan to add this to sunpy instead.