diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index e0c2c86..36a76d8 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -7,6 +7,11 @@ on: push: branches: [main, master] tags: ["v*"] + paths: + - .github/** + - src/** + - mkdocs.yml + - pyproject.toml pull_request: branches: [main, master] diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1ba5216..b3e88c6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,7 +19,7 @@ repos: - id: check-docstring-first - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.9.1 + rev: v0.9.2 hooks: - id: ruff types_or: [python, pyi, jupyter] @@ -32,12 +32,6 @@ repos: hooks: - id: nbstripout - - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.14.1 - hooks: - - id: mypy - args: [--config-file, .mypy.ini, --ignore-missing-imports] - - repo: https://github.com/python-jsonschema/check-jsonschema rev: "0.31.0" hooks: diff --git a/MANIFEST.in b/MANIFEST.in index dc02341..d69aab0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,10 +1,9 @@ exclude .* exclude mkdocs.yml exclude requirements.txt -exclude *.requirements.txt -exclude codecov.yml prune .* prune docs prune notebooks +prune site prune static