-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Move to actions #29
Merged
Move to actions #29
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
- '*.*' | ||
- '!*backport*' | ||
tags: | ||
- 'v*' | ||
- '!*dev*' | ||
- '!*pre*' | ||
- '!*post*' | ||
pull_request: | ||
# Allow manual runs through the web UI | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
core: | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main | ||
with: | ||
submodules: false | ||
coverage: codecov | ||
toxdeps: tox-pypi-filter | ||
posargs: -n auto | ||
envs: | | ||
- linux: py311 | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
test: | ||
needs: [core] | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main | ||
with: | ||
submodules: false | ||
coverage: codecov | ||
toxdeps: tox-pypi-filter | ||
posargs: -n auto | ||
envs: | | ||
- windows: py310 | ||
- macos: py39 | ||
- linux: | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
docs: | ||
needs: [core] | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main | ||
with: | ||
default_python: '3.9' | ||
submodules: false | ||
pytest: false | ||
toxdeps: tox-pypi-filter | ||
cache-key: docs-${{ github.run_id }} | ||
libraries: | | ||
apt: | ||
- graphviz | ||
envs: | | ||
- linux: build_docs | ||
|
||
extra: | ||
needs: [test] | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main | ||
with: | ||
default_python: '3.9' | ||
submodules: false | ||
coverage: codecov | ||
toxdeps: tox-pypi-filter | ||
posargs: -n auto | ||
envs: | | ||
- linux: py39-oldestdeps | ||
- linux: py311-devdeps | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
publish: | ||
# Build wheels when pushing to any branch except main | ||
# publish.yml will only publish if tagged ^v.* | ||
if: | | ||
( | ||
github.event_name != 'pull_request' && ( | ||
github.ref_name != 'main' || | ||
github.event_name == 'workflow_dispatch' | ||
) | ||
) || ( | ||
github.event_name == 'pull_request' && | ||
contains(github.event.pull_request.labels.*.name, 'Run publish') | ||
) | ||
needs: [test] | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@main | ||
with: | ||
python-version: "3.10" | ||
test_extras: 'all,tests' | ||
test_command: 'pytest -p no:warnings -m "not mpl_image_compare" --pyargs mpl_animators' | ||
submodules: false | ||
secrets: | ||
pypi_token: ${{ secrets.pypi_token }} | ||
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,21 +1,23 @@ | ||
## v1.1.0 - 2022-08-10 | ||
# Changelog # | ||
|
||
### What's Changed | ||
## v1.1.0 - 2022-08-10 ## | ||
|
||
#### Bug Fixes | ||
### What's Changed ### | ||
|
||
- Fix setting y limits when data is a dask array by @SolarDrew in https://github.com/sunpy/mpl-animators/pull/11 | ||
#### Bug Fixes #### | ||
|
||
#### Other Changes | ||
- Fix setting y limits when data is a dask array by SolarDrew in <https://github.com/sunpy/mpl-animators/pull/11> | ||
|
||
- Add changelog config and bump minimum Python version to 3.8 by @Cadair in https://github.com/sunpy/mpl-animators/pull/12 | ||
#### Other Changes #### | ||
|
||
### New Contributors | ||
- Add changelog config and bump minimum Python version to 3.8 by Cadair in <https://github.com/sunpy/mpl-animators/pull/12> | ||
|
||
- @SolarDrew made their first contribution in https://github.com/sunpy/mpl-animators/pull/11 | ||
#### New Contributors #### | ||
|
||
**Full Changelog**: https://github.com/sunpy/mpl-animators/compare/v1.0.1...v1.1.0 | ||
- @SolarDrew made their first contribution in <https://github.com/sunpy/mpl-animators/pull/11> | ||
|
||
## v1.0.0 | ||
**Full Changelog**: <https://github.com/sunpy/mpl-animators/compare/v1.0.1...v1.1.0> | ||
|
||
## v1.0.0 ## | ||
|
||
Initial release with code copied from `sunpy.visualisation.animators`. |
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
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.
Token will need to be added @Cadair