diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index acf31aa..0309065 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -13,6 +13,4 @@ on: jobs: call-changelog-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.7.0 - secrets: - USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: ASFHyP3/actions/.github/workflows/reusable-changelog-check.yml@v0.15.0 diff --git a/.github/workflows/create-jira-issue.yml b/.github/workflows/create-jira-issue.yml index 8ce649d..b7ffba8 100644 --- a/.github/workflows/create-jira-issue.yml +++ b/.github/workflows/create-jira-issue.yml @@ -6,7 +6,7 @@ on: jobs: call-create-jira-issue-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.8.0 + uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.15.0 secrets: JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} diff --git a/.github/workflows/labeled-pr.yml b/.github/workflows/labeled-pr.yml index 8601e20..2d4eb5b 100644 --- a/.github/workflows/labeled-pr.yml +++ b/.github/workflows/labeled-pr.yml @@ -12,4 +12,4 @@ on: jobs: call-labeled-pr-check-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.7.0 + uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.15.0 diff --git a/.github/workflows/release-checklist-comment.yml b/.github/workflows/release-checklist-comment.yml index 957f97d..d3beb69 100644 --- a/.github/workflows/release-checklist-comment.yml +++ b/.github/workflows/release-checklist-comment.yml @@ -9,6 +9,6 @@ on: jobs: add-release-template-comment: - uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.7.0 + uses: ASFHyP3/actions/.github/workflows/reusable-release-checklist-comment.yml@v0.15.0 secrets: USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f45df18..d9a9512 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: call-release-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.7.0 + uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.15.0 with: release_prefix: GIS Services secrets: diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index d4548e9..fcf462a 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -5,11 +5,8 @@ on: push jobs: call-secrets-analysis-workflow: # Docs: https://github.com/ASFHyP3/actions - uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.12.0 + uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.15.0 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 + uses: ASFHyP3/actions/.github/workflows/reusable-ruff.yml@v0.15.0 diff --git a/.github/workflows/tag-version.yml b/.github/workflows/tag-version.yml index 54c4828..b801397 100644 --- a/.github/workflows/tag-version.yml +++ b/.github/workflows/tag-version.yml @@ -7,6 +7,6 @@ on: jobs: call-bump-version-workflow: - uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.7.0 + uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.15.0 secrets: USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }} diff --git a/.trufflehog.txt b/.trufflehog.txt deleted file mode 100644 index e69de29..0000000 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