Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/sunpy/package-template",
"commit": "3d0ff5cac98c56196dbd1ba3e89703c2b7616e29",
"commit": "4c4701e4fe00e17a18e36e189b2928cd69983264",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down Expand Up @@ -33,7 +33,7 @@
".github/workflows/sub_package_update.yml"
],
"_template": "https://github.com/sunpy/package-template",
"_commit": "3d0ff5cac98c56196dbd1ba3e89703c2b7616e29"
"_commit": "4c4701e4fe00e17a18e36e189b2928cd69983264"
}
},
"directory": null
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
steps:
- uses: Cadair/matrix-notify-action@main # zizmor: ignore[unpinned-uses]
with:
workflow_description: "CI Workflow"
workflow_description: 'CI Workflow'
matrix_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
homeserver: ${{ secrets.MATRIX_HOMESERVER }}
Expand Down
13 changes: 9 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@
# All files which are tracked by git and not explicitly excluded here are included by setuptools_scm
exclude .codecov.yaml
exclude .mailmap
exclude .readthedocs.yml
exclude .coveragerc
exclude .cruft.json
exclude .gitignore
exclude .isort.cfg
exclude .pre-commit-config.yaml
exclude .readthedocs.yml
exclude .readthedocs.yaml
exclude .rtd-environment.yml
exclude .ruff.toml

# Prune folders
prune .github
prune build
prune docs/_build
prune docs/api
prune changelog
global-exclude *.pyc *.o

# This subpackage is only used in development checkouts
# and should not be included in built tarballs
prune ndcube/_dev
Loading