diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index d4548e9..1d08910 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -10,6 +10,3 @@ jobs: call-ruff-workflow: # Docs: https://github.com/ASFHyP3/actions uses: ASFHyP3/actions/.github/workflows/reusable-ruff.yml@v0.12.0 - - call-mypy-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-mypy.yml@v0.14.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ecc756..37bfdca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.3] +### Removed +- Remove `mypy` from [`static-analysis`](.github/workflows/static-analysis.yml). See https://github.com/ASFHyP3/gis-services/issues/176 + ## [0.7.2] ### Added - Add `mypy` to [`static-analysis`](.github/workflows/static-analysis.yml) diff --git a/environment.yml b/environment.yml index 3d76e82..9b9d3d9 100644 --- a/environment.yml +++ b/environment.yml @@ -8,4 +8,3 @@ dependencies: - pip: # conda-forge ruff seems to require Python >=3.8 - ruff - - mypy diff --git a/pyproject.toml b/pyproject.toml index e04f34f..a0f15ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,11 +30,3 @@ convention = "google" [tool.ruff.lint.isort] case-sensitive = true lines-after-imports = 2 - -[tool.mypy] -python_version = "3.7" -warn_redundant_casts = true -warn_unused_ignores = true -warn_unreachable = true -strict_equality = true -check_untyped_defs = true