Skip to content

Commit

Permalink
revise changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherrmann committed Jan 16, 2025
1 parent 7edbb5b commit 5558515
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.15.0]

### Removed
- The [`reusable-mypy`](.github/workflows/reusable-mypy.yml) workflow no longer passes any optional arguments to the `mypy` command. This makes it easier to run `mypy` locally, because the command is now just `mypy .`. If you want to preserve the removed options for your project, you must now add them to `[tool.mypy]` in `pyproject.toml`:
- The [`reusable-mypy`](.github/workflows/reusable-mypy.yml) workflow no longer passes any optional arguments to the `mypy` command. This makes it easier to run `mypy` locally, because the command is just:

```
mypy .
```

If you want to preserve the removed options for your project, you must now add them to `[tool.mypy]` in `pyproject.toml`:

```toml
install_types = true
non_interactive = true
pretty = true
ignore_missing_imports = true
```

Note that we discourage enabling `ignore_missing_imports` as a global option (see <https://github.com/ASFHyP3/actions/issues/225>). You can always find our currently recommended configuration options in the [README](https://github.com/ASFHyP3/actions#reusable-mypyyml).

## [0.14.0]
Expand Down

0 comments on commit 5558515

Please sign in to comment.