From 96821cfea154ec13b7633dcdc2cd49e69990a018 Mon Sep 17 00:00:00 2001 From: Jessica Scheick Date: Fri, 27 Mar 2026 12:15:08 -0400 Subject: [PATCH 1/3] moved github actions into workflows dir --- .github/{ => workflows}/linter_actions.yml | 0 .github/{ => workflows}/typecheck.yml | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workflows}/linter_actions.yml (100%) rename .github/{ => workflows}/typecheck.yml (100%) diff --git a/.github/linter_actions.yml b/.github/workflows/linter_actions.yml similarity index 100% rename from .github/linter_actions.yml rename to .github/workflows/linter_actions.yml diff --git a/.github/typecheck.yml b/.github/workflows/typecheck.yml similarity index 100% rename from .github/typecheck.yml rename to .github/workflows/typecheck.yml From 470269cfe8cb0ea73c4fd03b52ca32ca4b578458 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 16:31:35 +0000 Subject: [PATCH 2/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/dependabot.yml | 2 +- .gitignore | 2 +- .pre-commit-config.yaml | 2 +- CITATION.cff | 2 +- CONTRIBUTORS.md | 2 +- README.md | 3 +-- code_of_conduct.md | 2 +- pyproject.toml | 2 +- 8 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fdf94da..0b84a24 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,4 +10,4 @@ updates: patterns: - "*" # Group all Actions updates into a single larger pull request schedule: - interval: monthly \ No newline at end of file + interval: monthly diff --git a/.gitignore b/.gitignore index 20f1040..c1d6066 100644 --- a/.gitignore +++ b/.gitignore @@ -159,4 +159,4 @@ cython_debug/ .vscode/ # icepyx -.order_restart \ No newline at end of file +.order_restart diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 98d28bc..6557e47 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -40,4 +40,4 @@ repos: ci: autoupdate_schedule: monthly -# you can run `pre-commit autoupdate` to automatically update to the latest version of hooks! \ No newline at end of file +# you can run `pre-commit autoupdate` to automatically update to the latest version of hooks! diff --git a/CITATION.cff b/CITATION.cff index c227693..128a5d7 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -18,4 +18,4 @@ keywords: - Python - open science - NASA -license: BSD-3-Clause \ No newline at end of file +license: BSD-3-Clause diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 45e63a8..4b3f90a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -22,4 +22,4 @@ Thanks goes to these wonderful people [emoji key](https://allcontributors.org/do - \ No newline at end of file + diff --git a/README.md b/README.md index 812d929..4dcf9cc 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Coming soon... # Contributing -[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](code_of_conduct.md) +[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](code_of_conduct.md) Our team follows the [Contributor Covenant Code of Conduct](https://www.contributor-covenant.org), version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html). @@ -38,4 +38,3 @@ Our full attribution guidelines are coming soon. We use the [All Contributors Specification](https://allcontributors.org/docs/en/specification) to recognize our incredible [contributor team](CONTRIBUTORS.md). - diff --git a/code_of_conduct.md b/code_of_conduct.md index 4e142be..28d02ee 100644 --- a/code_of_conduct.md +++ b/code_of_conduct.md @@ -130,4 +130,4 @@ For answers to common questions about this code of conduct, see the FAQ at [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html [Mozilla CoC]: https://github.com/mozilla/diversity [FAQ]: https://www.contributor-covenant.org/faq -[translations]: https://www.contributor-covenant.org/translations \ No newline at end of file +[translations]: https://www.contributor-covenant.org/translations diff --git a/pyproject.toml b/pyproject.toml index 2e859fd..390fe22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -149,4 +149,4 @@ ignore = [ # "*/tests/*" = ["E266"] [tool.ruff.lint.isort] -force-sort-within-sections = true \ No newline at end of file +force-sort-within-sections = true From 64977088f7ed3313169f743f0938e82e1a478c41 Mon Sep 17 00:00:00 2001 From: Jessica Scheick Date: Fri, 27 Mar 2026 12:35:28 -0400 Subject: [PATCH 3/3] add codespell exception --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 390fe22..22a7696 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ fallback_version = "unknown" ##### LINTING, FORMATTING, TYPING ##### [tool.codespell] -ignore-words-list = "aok" +ignore-words-list = "aok, socio-economic" [tool.pyright] pythonVersion = "3.11"