-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
templated from https://github.com/sunpy/package-template
- Loading branch information
0 parents
commit 72592b9
Showing
27 changed files
with
1,777 additions
and
0 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,31 @@ | ||
{ | ||
"template": "https://github.com/sunpy/package-template", | ||
"commit": "2d45e572cdb08623eaab16e8da0a007f2f3f9e96", | ||
"checkout": null, | ||
"context": { | ||
"cookiecutter": { | ||
"package_name": "sunkit-magex", | ||
"module_name": "sunkit-magex", | ||
"short_description": "Potential field source surface modelling", | ||
"author_name": "The SunPy Community", | ||
"author_email": "[email protected]", | ||
"project_url": "https://sunpy.org", | ||
"license": "GNU GPL v3+", | ||
"minimum_python_version": "3.9", | ||
"use_compiled_extensions": "y", | ||
"enable_dynamic_dev_versions": "y", | ||
"include_example_code": "n", | ||
"include_cruft_update_github_workflow": "y", | ||
"_sphinx_theme": "alabaster", | ||
"_parent_project": "", | ||
"_install_requires": "", | ||
"_copy_without_render": [ | ||
"docs/_templates", | ||
"docs/_static", | ||
".github/workflows/sub_package_update.yml" | ||
], | ||
"_template": "https://github.com/sunpy/package-template" | ||
} | ||
}, | ||
"directory": null | ||
} |
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,27 @@ | ||
[flake8] | ||
ignore = | ||
# missing-whitespace-around-operator | ||
E225 | ||
# missing-whitespace-around-arithmetic-operator | ||
E226 | ||
# line-too-long | ||
E501 | ||
# unused-import | ||
F401 | ||
# undefined-local-with-import-star | ||
F403 | ||
# redefined-while-unused | ||
F811 | ||
# Line break occurred before a binary operator | ||
W503, | ||
# Line break occurred after a binary operator | ||
W504 | ||
max-line-length = 110 | ||
exclude = | ||
.git | ||
__pycache__ | ||
docs/conf.py | ||
build | ||
sunkit-magex/__init__.py, | ||
rst-directives = | ||
plot |
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,116 @@ | ||
|
||
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 | ||
envs: | | ||
- linux: py312 | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
sdist_verify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
- run: python -m pip install -U --user build | ||
- run: python -m build . --sdist | ||
- run: python -m pip install -U --user twine | ||
- run: python -m twine check dist/* | ||
|
||
test: | ||
needs: [core, sdist_verify] | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main | ||
with: | ||
submodules: false | ||
coverage: codecov | ||
toxdeps: tox-pypi-filter | ||
posargs: -n auto | ||
envs: | | ||
- windows: py311 | ||
- macos: py310 | ||
- linux: py310-oldestdeps | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
docs: | ||
needs: [core] | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main | ||
with: | ||
default_python: '3.10' | ||
submodules: false | ||
pytest: false | ||
toxdeps: tox-pypi-filter | ||
envs: | | ||
- linux: build_docs | ||
cron: | ||
if: | | ||
github.event_name == 'workflow_dispatch' || ( | ||
github.event_name == 'pull_request' && | ||
contains(github.event.pull_request.labels.*.name, 'Run cron CI') | ||
) | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main | ||
with: | ||
default_python: '3.10' | ||
submodules: false | ||
coverage: codecov | ||
toxdeps: tox-pypi-filter | ||
envs: | | ||
- 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, docs] | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@main | ||
with: | ||
sdist: true | ||
test_extras: 'tests' | ||
test_command: 'pytest -p no:warnings --doctest-rst --pyargs sunkit-magex' | ||
submodules: false | ||
targets: | | ||
- cp3{9,10,11,12}-manylinux*_x86_64 | ||
- cp3{9,10,11,12}-macosx_x86_64 | ||
- cp3{9,10,11,12}-macosx_arm64 | ||
- cp3{9,10,11,12}-win_amd64 | ||
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
""" | ||
This template is taken from the cruft example code, for further information please see: | ||
https://cruft.github.io/cruft/#automating-updates-with-github-actions | ||
""" | ||
name: Automatic Update from package template | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
main | ||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
include: | ||
- add-paths: . | ||
body: Use this to merge the changes to the repo | ||
branch: cruft/update | ||
commit-message: "Automate package template update" | ||
title: Incoming updates from package template | ||
- add-paths: .cruft.json | ||
body: Use this to reject changes in the repo | ||
branch: cruft/reject | ||
commit-message: "Chore: reject this cruft update" | ||
title: Reject new updates from package template | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install Cruft | ||
run: pip3 install cruft | ||
|
||
- name: Check if update is available | ||
continue-on-error: false | ||
id: check | ||
run: | | ||
CHANGES=0 | ||
if [ -f .cruft.json ]; then | ||
if ! cruft check; then | ||
CHANGES=1 | ||
fi | ||
else | ||
echo "No .cruft.json file" | ||
fi | ||
echo "has_changes=$CHANGES" >> "$GITHUB_OUTPUT" | ||
- name: Run update if available | ||
if: steps.check.outputs.has_changes == '1' | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Gromit" | ||
cruft update --skip-apply-ask --refresh-private-variables | ||
git restore --staged | ||
- name: Create pull request | ||
if: steps.check.output.has_changes == '1' | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
add-paths: ${{ matrix.add-paths }} | ||
commit-message: ${{ matrix.commit-message }} | ||
branch: ${{ matrix.branch }} | ||
delete-branch: true | ||
branch-suffix: timestamp | ||
title: ${{ matrix.title }} | ||
body: | | ||
This is an autogenerated PR. ${{ matrix.body }} | ||
[Cruft](https://cruft.github.io/cruft/) has detected updates from the Package Template |
Oops, something went wrong.