chore(deps): update development dependencies (non-major)
Metadata
Current evaluation
Merged automated dependency updates via Renovate. Updated non-major versions of coverage, pytest, black, codespell, mypy, and pyright. Changes passed CI checks and received approval before automatic merge.
Suggested action: —
No scores available.
Issue body
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [dev/coverage](https://togithub.com/nedbat/coveragepy) | `==7.2.7` -> `==7.3.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
| [dev/pytest](https://docs.pytest.org/en/latest/) ([source](https://togithub.com/pytest-dev/pytest), [changelog](https://docs.pytest.org/en/stable/changelog.html)) | `==7.4.0` -> `==7.4.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
| [lint/black](https://togithub.com/psf/black) ([changelog](https://togithub.com/psf/black/blob/main/CHANGES.md)) | `==23.3.0` -> `==23.9.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
| [lint/codespell](https://togithub.com/codespell-project/codespell) | `==2.2.5` -> `==2.2.6` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
| [types/mypy](https://www.mypy-lang.org/) ([source](https://togithub.com/python/mypy), [changelog](https://mypy-lang.blogspot.com/)) | `==1.4.1` -> `==1.6.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
| [types/pyright](https://togithub.com/RobertCraigie/pyright-python) | `==1.1.316` -> `==1.1.330.post0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
<details>
<summary>nedbat/coveragepy (dev/coverage)</summary>
### [`v7.3.2`](https://togithub.com/nedbat/coveragepy/blob/HEAD/CHANGES.rst#Version-732--2023-10-02)
[Compare Source](https://togithub.com/nedbat/coveragepy/compare/7.3.1...7.3.2)
- The `coverage lcov` command ignored the `[report] exclude_lines` and
`[report] exclude_also` settings (`issue 1684`*). This is now fixed,
thanks `Jacqueline Lee <pull 1685_>`*.
- Sometimes SQLite will create journal files alongside the coverage.py database
files. These are ephemeral, but could be mistakenly included when combining
data files. Now they are always ignored, fixing `issue 1605`\_. Thanks to
Brad Smith for suggesting fixes and providing detailed debugging.
- On Python 3.12+, we now disable SQLite writing journal files, which should be
a little faster.
- The new 3.12 soft keyword `type` is properly bolded in HTML reports.
- Removed the "fullcoverage" feature used by CPython to measure the coverage of
early-imported standard library modules. CPython `stopped using it
<88054_>`\_ in 2021, and it stopped working completely in Python 3.13.
.. \_issue 1605:[https://github.com/nedbat/coveragepy/issues/1605](https://togithub.com/nedbat/coveragepy/issues/1605)5
.. \_issue 1684[https://github.com/nedbat/coveragepy/issues/1684](https://togithub.com/nedbat/coveragepy/issues/1684)84
.. \_pull 168[https://github.com/nedbat/coveragepy/pull/1685](https://togithub.com/nedbat/coveragepy/pull/1685)685
.. \_880[https://github.com/python/cpython/issues/88054](https://togithub.com/python/cpython/issues/88054)8054
.. \_changes\_7-3-1:
### [`v7.3.1`](https://togithub.com/nedbat/coveragepy/blob/HEAD/CHANGES.rst#Version-731--2023-09-06)
[Compare Source](https://togithub.com/nedbat/coveragepy/compare/7.3.0...7.3.1)
- The semantics of stars in file patterns has been clarified in the docs. A
leading or trailing star matches any number of path components, like a double
star would. This is different than the behavior of a star in the middle of a
pattern. This discrepancy was `identified by Sviatoslav Sydorenko <starbad_>`*, who `provided patient detailed diagnosis <pull 1650_>`* and
graciously agreed to a pragmatic resolution.
- The API docs were missing from the last version. They are now `restored <apidocs_>`\_.
.. \_apidocs: https://coverage.readthedocs.io/en/latest/api_coverage.html
.. \_starbad[https://github.com/nedbat/coveragepy/issues/1407#issuecomment-1631085209](https://togithub.com/nedbat/coveragepy/issues/1407#issuecomment-1631085209)09
.. \_pull 165[https://github.com/nedbat/coveragepy/pull/1650](https://togithub.com/nedbat/coveragepy/pull/1650)650
.. \_changes\_7-3-0:
### [`v7.3.0`](https://togithub.com/nedbat/coveragepy/blob/HEAD/CHANGES.rst#Version-730--2023-08-12)
[Compare Source](https://togithub.com/nedbat/coveragepy/compare/7.2.7...7.3.0)
- Added a :meth:`.Coverage.collect` context manager to start and stop coverage
data collection.
- Dropped support for Python 3.7.
- Fix: in unusual circumstances, SQLite cannot be set to asynchronous mode.
Coverage.py would fail with the error `Safety level may not be changed
inside a transaction.` This is now avoided, closing `issue 1646`\_. Thanks
to Michael Bell for the detailed bug report.
- Docs: examples of configuration files now include separate examples for the
different syntaxes: .coveragerc, pyproject.toml, setup.cfg, and tox.ini.
- Fix: added `nosemgrep` comments to our JavaScript code so that
semgrep-based SAST security checks won't raise false alarms about security
problems that aren't problems.
- Added a CITATION.cff file, thanks to `Ken Schackart <pull 1641_>`\_.
.. \_pull 1641:[https://github.com/nedbat/coveragepy/pull/1641](https://togithub.com/nedbat/coveragepy/pull/1641)1
.. \_issue 1646[https://github.com/nedbat/coveragepy/issues/1646](https://togithub.com/nedbat/coveragepy/issues/1646)46
.. \_changes\_7-2-7:
</details>
<details>
<summary>pytest-dev/pytest (dev/pytest)</summary>
### [`v7.4.2`](https://togithub.com/pytest-dev/pytest/releases/tag/7.4.2): pytest 7.4.2 (2023-09-07)
[Compare Source](https://togithub.com/pytest-dev/pytest/compare/7.4.1...7.4.2)
##### Bug Fixes
- [#​11237](https://togithub.com/pytest-dev/pytest/issues/11237): Fix doctest collection of `functools.cached_property` objects.
- [#​11306](https://togithub.com/pytest-dev/pytest/issues/11306): Fixed bug using `--importmode=importlib` which would cause package `__init__.py` files to be imported more than once in some cases.
- [#​11367](https://togithub.com/pytest-dev/pytest/issues/11367): Fixed bug where `user_properties` where not being saved in the JUnit XML file if a fixture failed during teardown.
- [#​11394](https://togithub.com/pytest-dev/pytest/issues/11394): Fixed crash when parsing long command line arguments that might be interpreted as files.
##### Improved Documentation
- [#​11391](https://togithub.com/pytest-dev/pytest/issues/11391): Improved disclaimer on pytest plugin reference page to better indicate this is an automated, non-curated listing.
### [`v7.4.1`](https://togithub.com/pytest-dev/pytest/releases/tag/7.4.1): pytest 7.4.1 (2023-09-02)
[Compare Source](https://togithub.com/pytest-dev/pytest/compare/7.4.0...7.4.1)
## Bug Fixes
- [#​10337](https://togithub.com/pytest-dev/pytest/issues/10337): Fixed bug where fake intermediate modules generated by `--import-mode=importlib` would not include the
child modules as attributes of the parent modules.
- [#​10702](https://togithub.com/pytest-dev/pytest/issues/10702): Fixed error assertion handling in `pytest.approx` when `None` is an expected or received value when comparing dictionaries.
- [#​10811](https://togithub.com/pytest-dev/pytest/issues/10811): Fixed issue when using `--import-mode=importlib` together with `--doctest-modules` that caused modules
to be imported more than once, causing problems with modules that have import side effects.
</details>
<details>
<summary>psf/black (lint/black)</summary>
### [`v23.9.1`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2391)
[Compare Source](https://togithub.com/psf/black/compare/23.9.0...23.9.1)
Due to various issues, the previous release (23.9.0) did not include compiled mypyc
wheels, which make Black significantly faster. These issues have now been fixed, and
this release should come with compiled wheels once again.
There will be no wheels for Python 3.12 due to a bug in mypyc. We will provide 3.12
wheels in a future release as soon as the mypyc bug is fixed.
##### Packaging
- Upgrade to mypy 1.5.1 ([#​3864](https://togithub.com/psf/black/issues/3864))
##### Performance
- Store raw tuples instead of NamedTuples in Black's cache, improving performance and
decreasing the size of the cache ([#​3877](https://togithub.com/psf/black/issues/3877))
### [`v23.9.0`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2390)
[Compare Source](https://togithub.com/psf/black/compare/23.7.0...23.9.0)
##### Preview style
- More concise formatting for dummy implementations ([#​3796](https://togithub.com/psf/black/issues/3796))
- In stub files, add a blank line between a statement with a body (e.g an
`if sys.version_info > (3, x):`) and a function definition on the same level ([#​3862](https://togithub.com/psf/black/issues/3862))
- Fix a bug whereby spaces were removed from walrus operators within subscript([#​3823](https://togithub.com/psf/black/issues/3823))
##### Configuration
- Black now applies exclusion and ignore logic before resolving symlinks ([#​3846](https://togithub.com/psf/black/issues/3846))
##### Performance
- Avoid importing `IPython` if notebook cells do not contain magics ([#​3782](https://togithub.com/psf/black/issues/3782))
- Improve caching by comparing file hashes as fallback for mtime and size ([#​3821](https://togithub.com/psf/black/issues/3821))
##### *Blackd*
- Fix an issue in `blackd` with single character input ([#​3558](https://togithub.com/psf/black/issues/3558))
##### Integrations
- Black now has an
[official pre-commit mirror](https://togithub.com/psf/black-pre-commit-mirror). Swapping
`https://github.com/psf/black` to `https://github.com/psf/black-pre-commit-mirror` in
your `.pre-commit-config.yaml` will make Black about 2x faster ([#​3828](https://togithub.com/psf/black/issues/3828))
- The `.black.env` folder specified by `ENV_PATH` will now be removed on the completion
of the GitHub Action ([#​3759](https://togithub.com/psf/black/issues/3759))
### [`v23.7.0`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2370)
[Compare Source](https://togithub.com/psf/black/compare/23.3.0...23.7.0)
##### Highlights
- Runtime support for Python 3.7 has been removed. Formatting 3.7 code will still be
supported until further notice ([#​3765](https://togithub.com/psf/black/issues/3765))
##### Stable style
- Fix a bug where an illegal trailing comma was added to return type annotations using
PEP 604 unions ([#​3735](https://togithub.com/psf/black/issues/3735))
- Fix several bugs and crashes where comments in stub files were removed or mishandled
under some circumstances ([#​3745](https://togithub.com/psf/black/issues/3745))
- Fix a crash with multi-line magic comments like `type: ignore` within parentheses
([#​3740](https://togithub.com/psf/black/issues/3740))
- Fix error in AST validation when *Black* removes trailing whitespace in a type comment
([#​3773](https://togithub.com/psf/black/issues/3773))
##### Preview style
- Implicitly concatenated strings used as function args are no longer wrapped inside
parentheses ([#​3640](https://togithub.com/psf/black/issues/3640))
- Remove blank lines between a class definition and its docstring ([#​3692](https://togithub.com/psf/black/issues/3692))
##### Configuration
- The `--workers` argument to *Black* can now be specified via the `BLACK_NUM_WORKERS`
environment variable ([#​3743](https://togithub.com/psf/black/issues/3743))
- `.pytest_cache`, `.ruff_cache` and `.vscode` are now excluded by default ([#​3691](https://togithub.com/psf/black/issues/3691))
- Fix *Black* not honouring `pyproject.toml` settings when running `--stdin-filename`
and the `pyproject.toml` found isn't in the current working directory ([#​3719](https://togithub.com/psf/black/issues/3719))
- *Black* will now error if `exclude` and `extend-exclude` have invalid data types in
`pyproject.toml`, instead of silently doing the wrong thing ([#​3764](https://togithub.com/psf/black/issues/3764))
##### Packaging
- Upgrade mypyc from 0.991 to 1.3 ([#​3697](https://togithub.com/psf/black/issues/3697))
- Remove patching of Click that mitigated errors on Python 3.6 with `LANG=C` ([#​3768](https://togithub.com/psf/black/issues/3768))
##### Parser
- Add support for the new PEP 695 syntax in Python 3.12 ([#​3703](https://togithub.com/psf/black/issues/3703))
##### Performance
- Speed up *Black* significantly when the cache is full ([#​3751](https://togithub.com/psf/black/issues/3751))
- Avoid importing `IPython` in a case where we wouldn't need it ([#​3748](https://togithub.com/psf/black/issues/3748))
##### Output
- Use aware UTC datetimes internally, avoids deprecation warning on Python 3.12 ([#​3728](https://togithub.com/psf/black/issues/3728))
- Change verbose logging to exactly mirror *Black*'s logic for source discovery ([#​3749](https://togithub.com/psf/black/issues/3749))
##### *Blackd*
- The `blackd` argument parser now shows the default values for options in their help
text ([#​3712](https://togithub.com/psf/black/issues/3712))
##### Integrations
- Black is now tested with
[`PYTHONWARNDEFAULTENCODING = 1`](https://docs.python.org/3/library/io.html#io-encoding-warning)
([#​3763](https://togithub.com/psf/black/issues/3763))
- Update GitHub Action to display black output in the job summary ([#​3688](https://togithub.com/psf/black/issues/3688))
##### Documentation
- Add a CITATION.cff file to the root of the repository, containing metadata on how to
cite this software ([#​3723](https://togithub.com/psf/black/issues/3723))
- Update the *classes* and *exceptions* documentation in Developer reference to match
the latest code base ([#​3755](https://togithub.com/psf/black/issues/3755))
</details>
<details>
<summary>codespell-project/codespell (lint/codespell)</summary>
### [`v2.2.6`](https://togithub.com/codespell-project/codespell/releases/tag/v2.2.6)
[Compare Source](https://togithub.com/codespell-project/codespell/compare/v2.2.5...v2.2.6)
#### What's Changed
- Test to check our string escape word triggers on its own by [@​peternewman](https://togithub.com/peternewman) in [https://github.com/codespell-project/codespell/pull/2879](https://togithub.com/codespell-project/codespell/pull/2879)
- feat(dictionary): add additiional additional entry by [@​IndexSeek](https://togithub.com/IndexSeek) in [https://github.com/codespell-project/codespell/pull/2882](https://togithub.com/codespell-project/codespell/pull/2882)
- Add `currebtly` Misspelling by [@​korverdev](https://togithub.com/korverdev) in [https://github.com/codespell-project/codespell/pull/2881](https://togithub.com/codespell-project/codespell/pull/2881)
- Add more typos for "approximate" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2884](https://togithub.com/codespell-project/codespell/pull/2884)
- Add new typos for "load" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2885](https://togithub.com/codespell-project/codespell/pull/2885)
- Add typos for "accommodate" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2886](https://togithub.com/codespell-project/codespell/pull/2886)
- Add spelling correction for 'prodive' by [@​adrien-berchet](https://togithub.com/adrien-berchet) in [https://github.com/codespell-project/codespell/pull/2889](https://togithub.com/codespell-project/codespell/pull/2889)
- Add `annhilate` Mispelling by [@​korverdev](https://togithub.com/korverdev) in [https://github.com/codespell-project/codespell/pull/2891](https://togithub.com/codespell-project/codespell/pull/2891)
- Add alternative spelling corrections for "merget" by [@​cfi-gb](https://togithub.com/cfi-gb) in [https://github.com/codespell-project/codespell/pull/2890](https://togithub.com/codespell-project/codespell/pull/2890)
- Add various typos by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2887](https://togithub.com/codespell-project/codespell/pull/2887)
- Add suffixes to existing typos by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2895](https://togithub.com/codespell-project/codespell/pull/2895)
- Add `twine` As Dev Dependency by [@​korverdev](https://togithub.com/korverdev) in [https://github.com/codespell-project/codespell/pull/2901](https://togithub.com/codespell-project/codespell/pull/2901)
- frustrum->frustum by [@​tkoyama010](https://togithub.com/tkoyama010) in [https://github.com/codespell-project/codespell/pull/2899](https://togithub.com/codespell-project/codespell/pull/2899)
- Add several spelling corrections by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/2900](https://togithub.com/codespell-project/codespell/pull/2900)
- Add suffixes to existing typos, part 2 by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2902](https://togithub.com/codespell-project/codespell/pull/2902)
- Add iamges->images and cannel variants by [@​peternewman](https://togithub.com/peternewman) in [https://github.com/codespell-project/codespell/pull/2893](https://togithub.com/codespell-project/codespell/pull/2893)
- Add all corrections in [#​2857](https://togithub.com/codespell-project/codespell/issues/2857) by [@​janosh](https://togithub.com/janosh) in [https://github.com/codespell-project/codespell/pull/2898](https://togithub.com/codespell-project/codespell/pull/2898)
- Add suffixes to typos that start with "a" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2905](https://togithub.com/codespell-project/codespell/pull/2905)
- Add suffixes to typos from "b" to "ch" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2906](https://togithub.com/codespell-project/codespell/pull/2906)
- Add suffixes to typos from "cop" to "cy" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2911](https://togithub.com/codespell-project/codespell/pull/2911)
- Add spelling corrections for upperace and lowerace. by [@​cfi-gb](https://togithub.com/cfi-gb) in [https://github.com/codespell-project/codespell/pull/2909](https://togithub.com/codespell-project/codespell/pull/2909)
- Add suffixes to typos from "ci" to "con" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2907](https://togithub.com/codespell-project/codespell/pull/2907)
- Add variations of 'check' by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/2904](https://togithub.com/codespell-project/codespell/pull/2904)
- Add suffixes to typos that start with "de" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2913](https://togithub.com/codespell-project/codespell/pull/2913)
- Add suffixes to typos from "di" to "dy" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2914](https://togithub.com/codespell-project/codespell/pull/2914)
- Add suffixes to typos that start with "e" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2915](https://togithub.com/codespell-project/codespell/pull/2915)
- Add some spelling corrections by [@​fxlb](https://togithub.com/fxlb) in [https://github.com/codespell-project/codespell/pull/2918](https://togithub.com/codespell-project/codespell/pull/2918)
- Add suffixes to typos that start with "f" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2916](https://togithub.com/codespell-project/codespell/pull/2916)
- Add typos for "general", "generate", "generic" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2919](https://togithub.com/codespell-project/codespell/pull/2919)
- Move `dateset` to code by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2917](https://togithub.com/codespell-project/codespell/pull/2917)
- Add correction for "distict" by [@​jdufresne](https://togithub.com/jdufresne) in [https://github.com/codespell-project/codespell/pull/2910](https://togithub.com/codespell-project/codespell/pull/2910)
- Add several spelling corrections by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/2908](https://togithub.com/codespell-project/codespell/pull/2908)
- Add new suggestions for existing typos by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2921](https://togithub.com/codespell-project/codespell/pull/2921)
- Add suffixes to typos that start with "g" or "h" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2922](https://togithub.com/codespell-project/codespell/pull/2922)
- Dev Container by [@​korverdev](https://togithub.com/korverdev) in [https://github.com/codespell-project/codespell/pull/2903](https://togithub.com/codespell-project/codespell/pull/2903)
- Add postifx->postfix to code dictionary by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/2927](https://togithub.com/codespell-project/codespell/pull/2927)
- Add openes->opens, openness, to dictionary by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/2930](https://togithub.com/codespell-project/codespell/pull/2930)
- Add suffixes to typos from "ib" to "im" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2924](https://togithub.com/codespell-project/codespell/pull/2924)
- Add indepentend->independent by [@​alxgu](https://togithub.com/alxgu) in [https://github.com/codespell-project/codespell/pull/2892](https://togithub.com/codespell-project/codespell/pull/2892)
- Add several spelling corrections by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/2926](https://togithub.com/codespell-project/codespell/pull/2926)
- feat: Add collogue->colleague to dictionary by [@​matthewfeickert](https://togithub.com/matthewfeickert) in [https://github.com/codespell-project/codespell/pull/2923](https://togithub.com/codespell-project/codespell/pull/2923)
- Typos from OpenSSL 3.0 by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2883](https://togithub.com/codespell-project/codespell/pull/2883)
- Add suffixes to typos from "ip" to "k" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2931](https://togithub.com/codespell-project/codespell/pull/2931)
- Add suffixes to typos that start with "in" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2925](https://togithub.com/codespell-project/codespell/pull/2925)
- Add typos discovered in django/deps repository by [@​jdufresne](https://togithub.com/jdufresne) in [https://github.com/codespell-project/codespell/pull/2932](https://togithub.com/codespell-project/codespell/pull/2932)
- Add some archaic terms for Muslim to dictionary by [@​skangas](https://togithub.com/skangas) in [https://github.com/codespell-project/codespell/pull/2610](https://togithub.com/codespell-project/codespell/pull/2610)
- Add words from misspell's dictionary (A-1) by [@​skangas](https://togithub.com/skangas) in [https://github.com/codespell-project/codespell/pull/2748](https://togithub.com/codespell-project/codespell/pull/2748)
- Add suffixes to typos that start with "l" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2936](https://togithub.com/codespell-project/codespell/pull/2936)
- Add typo fix: reacord->record by [@​jdufresne](https://togithub.com/jdufresne) in [https://github.com/codespell-project/codespell/pull/2941](https://togithub.com/codespell-project/codespell/pull/2941)
- Add suffixes to typos that start with "m" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2937](https://togithub.com/codespell-project/codespell/pull/2937)
- Add suffixes to typos that start with "n" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2939](https://togithub.com/codespell-project/codespell/pull/2939)
- Add suffixes to typos that start with "o" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2940](https://togithub.com/codespell-project/codespell/pull/2940)
- Improve existing suggestions by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2943](https://togithub.com/codespell-project/codespell/pull/2943)
- Add vulnerabily->vulnerably, vulnerability, spelling correction. by [@​cfi-gb](https://togithub.com/cfi-gb) in [https://github.com/codespell-project/codespell/pull/2946](https://togithub.com/codespell-project/codespell/pull/2946)
- Add suffixes to typos from "pa" to "pl" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2944](https://togithub.com/codespell-project/codespell/pull/2944)
- Add suffixes to typos from "po" to "pu" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2945](https://togithub.com/codespell-project/codespell/pull/2945)
- Allow words missing from aspell dictionaries by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2933](https://togithub.com/codespell-project/codespell/pull/2933)
- Add journalling->journaling to GB->EN dict by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/2371](https://togithub.com/codespell-project/codespell/pull/2371)
- Use large aspell dictionaries by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2947](https://togithub.com/codespell-project/codespell/pull/2947)
- Add suffixes to typos from "q" to "red" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2948](https://togithub.com/codespell-project/codespell/pull/2948)
- Add suffixes to typos from "ref" to "rep" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2949](https://togithub.com/codespell-project/codespell/pull/2949)
- Add suffixes to typos from "req" to "ry" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2950](https://togithub.com/codespell-project/codespell/pull/2950)
- Add suffixes to typos from "sa" to "se" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2951](https://togithub.com/codespell-project/codespell/pull/2951)
- Add suffixes to typos from "sh" to "sp" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2952](https://togithub.com/codespell-project/codespell/pull/2952)
- Add suffixes to typos from "sr" to "st" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2953](https://togithub.com/codespell-project/codespell/pull/2953)
- Remove a branch from `main()` to pass Ruff CI check. by [@​korverdev](https://togithub.com/korverdev) in [https://github.com/codespell-project/codespell/pull/2962](https://togithub.com/codespell-project/codespell/pull/2962)
- Add suffixes to typos from "su" to "sz" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2954](https://togithub.com/codespell-project/codespell/pull/2954)
- Dictionary fixes by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2935](https://togithub.com/codespell-project/codespell/pull/2935)
- Add Pre-Commit as a dev dependency by [@​korverdev](https://togithub.com/korverdev) in [https://github.com/codespell-project/codespell/pull/2959](https://togithub.com/codespell-project/codespell/pull/2959)
- Drop support for Python 3.7 by [@​korverdev](https://togithub.com/korverdev) in [https://github.com/codespell-project/codespell/pull/2964](https://togithub.com/codespell-project/codespell/pull/2964)
- Fix pre-commit issues by [@​kurtmckee](https://togithub.com/kurtmckee) in [https://github.com/codespell-project/codespell/pull/2967](https://togithub.com/codespell-project/codespell/pull/2967)
- Add suffixes to typos that start with "t" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2965](https://togithub.com/codespell-project/codespell/pull/2965)
- Add suffixes to typos that start with "u" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2966](https://togithub.com/codespell-project/codespell/pull/2966)
- Add suffixes to typos that start with "v" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2970](https://togithub.com/codespell-project/codespell/pull/2970)
- Add suffixes to typos from "w" to "z" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2971](https://togithub.com/codespell-project/codespell/pull/2971)
- Add some new misspellings by [@​Jeremiah-England](https://togithub.com/Jeremiah-England) in [https://github.com/codespell-project/codespell/pull/2972](https://togithub.com/codespell-project/codespell/pull/2972)
- Add spelling corrections for defaoult and variants. by [@​cfi-gb](https://togithub.com/cfi-gb) in [https://github.com/codespell-project/codespell/pull/2975](https://togithub.com/codespell-project/codespell/pull/2975)
- Fix the name of the extra word lists we load by [@​peternewman](https://togithub.com/peternewman) in [https://github.com/codespell-project/codespell/pull/2976](https://togithub.com/codespell-project/codespell/pull/2976)
- Add suffixes to typos from "aa" to "acc" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2974](https://togithub.com/codespell-project/codespell/pull/2974)
- Add suffixes to typos from "ace" to "ad" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2987](https://togithub.com/codespell-project/codespell/pull/2987)
- Add suffixes to typos from "af" to "al" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2988](https://togithub.com/codespell-project/codespell/pull/2988)
- Dictionary fixes by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2980](https://togithub.com/codespell-project/codespell/pull/2980)
- Add suffixes to typos from "am" to "an" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2989](https://togithub.com/codespell-project/codespell/pull/2989)
- Use pre-commit to sort the dictionaries by [@​kurtmckee](https://togithub.com/kurtmckee) in [https://github.com/codespell-project/codespell/pull/2973](https://togithub.com/codespell-project/codespell/pull/2973)
- Simpler dictionary parsing by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2986](https://togithub.com/codespell-project/codespell/pull/2986)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/2993](https://togithub.com/codespell-project/codespell/pull/2993)
- Add suffixes to typos that start with "ap" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2991](https://togithub.com/codespell-project/codespell/pull/2991)
- Half dozen new cases in `dictionary.txt` by [@​janosh](https://togithub.com/janosh) in [https://github.com/codespell-project/codespell/pull/2994](https://togithub.com/codespell-project/codespell/pull/2994)
- Add suffixes to typos that start with "ar" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2992](https://togithub.com/codespell-project/codespell/pull/2992)
- Add suffixes to typos that start with "as" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2997](https://togithub.com/codespell-project/codespell/pull/2997)
- Add suffixes to typos from "at" to "ay" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2998](https://togithub.com/codespell-project/codespell/pull/2998)
- Add suffixes to typos from "ba" to "be" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/2999](https://togithub.com/codespell-project/codespell/pull/2999)
- Add preperint typo by [@​yarikoptic](https://togithub.com/yarikoptic) in [https://github.com/codespell-project/codespell/pull/2978](https://togithub.com/codespell-project/codespell/pull/2978)
- Add some typos found in a large documentation repo by [@​kurtmckee](https://togithub.com/kurtmckee) in [https://github.com/codespell-project/codespell/pull/3001](https://togithub.com/codespell-project/codespell/pull/3001)
- Add suffixes to typos from "bi" to "bu" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3002](https://togithub.com/codespell-project/codespell/pull/3002)
- Add suffixes to typos that start with "ca" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3003](https://togithub.com/codespell-project/codespell/pull/3003)
- Add some misspellings and refinements by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/3004](https://togithub.com/codespell-project/codespell/pull/3004)
- Add typo variations of background(s) by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/3006](https://togithub.com/codespell-project/codespell/pull/3006)
- Add more typos for "check" and similar by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3005](https://togithub.com/codespell-project/codespell/pull/3005)
- ...ter → ...tor by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2990](https://togithub.com/codespell-project/codespell/pull/2990)
- Add suffixes to typos from "ce" to "ci" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3008](https://togithub.com/codespell-project/codespell/pull/3008)
- Remove the grave accent (\`) from the default word regex by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2983](https://togithub.com/codespell-project/codespell/pull/2983)
- Add typo variations for 'enble'->'enable' to main dictionary by [@​akien-mga](https://togithub.com/akien-mga) in [https://github.com/codespell-project/codespell/pull/3010](https://togithub.com/codespell-project/codespell/pull/3010)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/3011](https://togithub.com/codespell-project/codespell/pull/3011)
- Add suffixes to typos from "cl" to "col" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3009](https://togithub.com/codespell-project/codespell/pull/3009)
- Generate alternative typos with a translation table by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/2985](https://togithub.com/codespell-project/codespell/pull/2985)
- Remove redundant linting CI workflows handled by pre-commit.ci by [@​kurtmckee](https://togithub.com/kurtmckee) in [https://github.com/codespell-project/codespell/pull/2969](https://togithub.com/codespell-project/codespell/pull/2969)
- Fix ruff lint error by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3015](https://togithub.com/codespell-project/codespell/pull/3015)
- Add suffixes to typos that start with "com" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3012](https://togithub.com/codespell-project/codespell/pull/3012)
- Add spelling correction for information and variant. by [@​cfi-gb](https://togithub.com/cfi-gb) in [https://github.com/codespell-project/codespell/pull/3018](https://togithub.com/codespell-project/codespell/pull/3018)
- Replace local and CI workflow by pre-commit by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3020](https://togithub.com/codespell-project/codespell/pull/3020)
- Add fram->frame and friend by [@​peternewman](https://togithub.com/peternewman) in [https://github.com/codespell-project/codespell/pull/3016](https://togithub.com/codespell-project/codespell/pull/3016)
- Add typo variations of 'dispatch' by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/3007](https://togithub.com/codespell-project/codespell/pull/3007)
- Add more typos for "configure" and similar by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3013](https://togithub.com/codespell-project/codespell/pull/3013)
- Add suffixes to typos from "cona" to "conr" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3023](https://togithub.com/codespell-project/codespell/pull/3023)
- Add suffixes to typos from "cons" to "conv" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3025](https://togithub.com/codespell-project/codespell/pull/3025)
- Add more typos for "correspond" and similar by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3026](https://togithub.com/codespell-project/codespell/pull/3026)
- Adding articifial to artificial to `dictionary.txt` by [@​jamesbraza](https://togithub.com/jamesbraza) in [https://github.com/codespell-project/codespell/pull/3024](https://togithub.com/codespell-project/codespell/pull/3024)
- Move the valid word implementor in rare dictionary by [@​fxlb](https://togithub.com/fxlb) in [https://github.com/codespell-project/codespell/pull/3030](https://togithub.com/codespell-project/codespell/pull/3030)
- Typos from tcpdump and libpcap by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3031](https://togithub.com/codespell-project/codespell/pull/3031)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/3033](https://togithub.com/codespell-project/codespell/pull/3033)
- Add suffixes to typos from "coo" to "coy" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3029](https://togithub.com/codespell-project/codespell/pull/3029)
- Add suffixes to typos from "cp" to "cy" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3032](https://togithub.com/codespell-project/codespell/pull/3032)
- Add suffixes to typos from "dc" to "den" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3034](https://togithub.com/codespell-project/codespell/pull/3034)
- Add suffixes to typos from "dep" to "der" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3036](https://togithub.com/codespell-project/codespell/pull/3036)
- \[pre-commit.ci] fix new ruff issue by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3042](https://togithub.com/codespell-project/codespell/pull/3042)
- Add suffixes to typos from "des" to "dev" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3039](https://togithub.com/codespell-project/codespell/pull/3039)
- Add suffixes to typos that start with "di" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3040](https://togithub.com/codespell-project/codespell/pull/3040)
- Add suffixes to typos from "do" to "dy" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3043](https://togithub.com/codespell-project/codespell/pull/3043)
- Add suffixes to typos from "ea" to "en" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3048](https://togithub.com/codespell-project/codespell/pull/3048)
- Add suffixes to typos from "ep" to "exe" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3049](https://togithub.com/codespell-project/codespell/pull/3049)
- Add suffixes to typos from "exi" to "exu" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3050](https://togithub.com/codespell-project/codespell/pull/3050)
- \[pre-commit.ci] pre-commit autoupdate by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3045](https://togithub.com/codespell-project/codespell/pull/3045)
- Update dictionary.txt by [@​janosh](https://togithub.com/janosh) in [https://github.com/codespell-project/codespell/pull/3035](https://togithub.com/codespell-project/codespell/pull/3035)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/3051](https://togithub.com/codespell-project/codespell/pull/3051)
- Add suffixes to typos that start with "f" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3052](https://togithub.com/codespell-project/codespell/pull/3052)
- Add suffixes to typos from "g" to "h" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3053](https://togithub.com/codespell-project/codespell/pull/3053)
- Additions to `dictionary.txt` by [@​janosh](https://togithub.com/janosh) in [https://github.com/codespell-project/codespell/pull/3054](https://togithub.com/codespell-project/codespell/pull/3054)
- Modify structure of dict read from TOML to match dict read from INI by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3046](https://togithub.com/codespell-project/codespell/pull/3046)
- Add suffixes to typos from "id" to "inh" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3055](https://togithub.com/codespell-project/codespell/pull/3055)
- Add more typos for "initialize" and similar by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3056](https://togithub.com/codespell-project/codespell/pull/3056)
- Add suffixes to typos from "ini" to "it" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3059](https://togithub.com/codespell-project/codespell/pull/3059)
- Add suffixes to typos from "j" to "l" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3060](https://togithub.com/codespell-project/codespell/pull/3060)
- Add refinement to 'draing' typo by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/3062](https://togithub.com/codespell-project/codespell/pull/3062)
- Add suffixes to typos from "ma" to "me" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3063](https://togithub.com/codespell-project/codespell/pull/3063)
- Add suffixes to typos from "mi" to "mu" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3064](https://togithub.com/codespell-project/codespell/pull/3064)
- Add more variations of "except" and "exempt" by [@​barsnick](https://togithub.com/barsnick) in [https://github.com/codespell-project/codespell/pull/3057](https://togithub.com/codespell-project/codespell/pull/3057)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/3065](https://togithub.com/codespell-project/codespell/pull/3065)
- Bump actions/checkout from 3 to 4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/codespell-project/codespell/pull/3066](https://togithub.com/codespell-project/codespell/pull/3066)
- Add spelling correction for "exis". by [@​cfi-gb](https://togithub.com/cfi-gb) in [https://github.com/codespell-project/codespell/pull/3067](https://togithub.com/codespell-project/codespell/pull/3067)
- Add followiing->following by [@​alxgu](https://togithub.com/alxgu) in [https://github.com/codespell-project/codespell/pull/3070](https://togithub.com/codespell-project/codespell/pull/3070)
- Add suffixes to typos that start with "n" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3068](https://togithub.com/codespell-project/codespell/pull/3068)
- Add suffixes to typos that start with "o" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3069](https://togithub.com/codespell-project/codespell/pull/3069)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/3074](https://togithub.com/codespell-project/codespell/pull/3074)
- Add suffixes to typos that start with "pa" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3071](https://togithub.com/codespell-project/codespell/pull/3071)
- Add suffixes to typos from "pe" to "po" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3073](https://togithub.com/codespell-project/codespell/pull/3073)
- Get rid of typos with apostrophe replaced by semicolon by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3022](https://togithub.com/codespell-project/codespell/pull/3022)
- Add suffixes to typos from "pr" to "pu" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3075](https://togithub.com/codespell-project/codespell/pull/3075)
- Add handlong->handling by [@​nils-van-zuijlen](https://togithub.com/nils-van-zuijlen) in [https://github.com/codespell-project/codespell/pull/3076](https://togithub.com/codespell-project/codespell/pull/3076)
- Bump codecov/codecov-action from 3 to 4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/codespell-project/codespell/pull/3078](https://togithub.com/codespell-project/codespell/pull/3078)
- Add suffixes to typos from "q" to "rec" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3077](https://togithub.com/codespell-project/codespell/pull/3077)
- Revert [`b397a6e`](https://togithub.com/codespell-project/codespell/commit/b397a6e4) / [#​3078](https://togithub.com/codespell-project/codespell/issues/3078) by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3080](https://togithub.com/codespell-project/codespell/pull/3080)
- Add various typos by [@​luzpaz](https://togithub.com/luzpaz) in [https://github.com/codespell-project/codespell/pull/3079](https://togithub.com/codespell-project/codespell/pull/3079)
- Add suffixes to typos from "red" to "rep" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3081](https://togithub.com/codespell-project/codespell/pull/3081)
- Add suffixes to typos from "req" to "ru" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3083](https://togithub.com/codespell-project/codespell/pull/3083)
- Dictionary additions by [@​janosh](https://togithub.com/janosh) in [https://github.com/codespell-project/codespell/pull/3082](https://togithub.com/codespell-project/codespell/pull/3082)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/3085](https://togithub.com/codespell-project/codespell/pull/3085)
- Add suffixes to typos from "sa" to "se" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3084](https://togithub.com/codespell-project/codespell/pull/3084)
- Add correction for havne't->haven't by [@​cfi-gb](https://togithub.com/cfi-gb) in [https://github.com/codespell-project/codespell/pull/3089](https://togithub.com/codespell-project/codespell/pull/3089)
- Add suffixes to typos from "sh" to "so" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3086](https://togithub.com/codespell-project/codespell/pull/3086)
- Add suffixes to typos from "sp" to "st" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3087](https://togithub.com/codespell-project/codespell/pull/3087)
- Add suffixes to typos from "su" to "sy" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3090](https://togithub.com/codespell-project/codespell/pull/3090)
- Add suffixes to typos from "ta" to "th" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3092](https://togithub.com/codespell-project/codespell/pull/3092)
- \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/codespell-project/codespell/pull/3097](https://togithub.com/codespell-project/codespell/pull/3097)
- Add suffixes to typos from "ti" to "ty" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3094](https://togithub.com/codespell-project/codespell/pull/3094)
- Add suffixes to typos that start with "u" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3095](https://togithub.com/codespell-project/codespell/pull/3095)
- Add suffixes to typos from "v" to "z" by [@​int-y1](https://togithub.com/int-y1) in [https://github.com/codespell-project/codespell/pull/3096](https://togithub.com/codespell-project/codespell/pull/3096)
- many new typos from different repositories by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3021](https://togithub.com/codespell-project/codespell/pull/3021)
- fixing setuptool_scm dependency because the latest version is broken by [@​tomrijntjes](https://togithub.com/tomrijntjes) in [https://github.com/codespell-project/codespell/pull/3100](https://togithub.com/codespell-project/codespell/pull/3100)
- More typos by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3101](https://togithub.com/codespell-project/codespell/pull/3101)
- Use f-strings wherever possible by [@​DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos) in [https://github.com/codespell-project/codespell/pull/3102](https://togithub.com/codespell-project/codespell/pull/3102)
#### New Contributors
- [@​IndexSeek](https://togithub.com/IndexSeek) made their first contribution in [https://github.com/codespell-project/codespell/pull/2882](https://togithub.com/codespell-project/codespell/pull/2882)
- [@​alxgu](https://togithub.com/alxgu) made their first contribution in [https://github.com/codespell-project/codespell/pull/2892](https://togithub.com/codespell-project/codespell/pull/2892)
- [@​kurtmckee](https://togithub.com/kurtmckee) made their first contribution in [https://github.com/codespell-project/codespell/pull/2967](https://togithub.com/codespell-project/codespell/pull/2967)
- [@​Jeremiah-England](https://togithub.com/Jeremiah-England) made their first contribution in [https://github.com/codespell-project/codespell/pull/2972](https://togithub.com/codespell-project/codespell/pull/2972)
- [@​pre-commit-ci](https://togithub.com/pre-commit-ci) made their first contribution in [https://github.com/codespell-project/codespell/pull/2993](https://togithub.com/codespell-project/codespell/pull/2993)
- [@​jamesbraza](https://togithub.com/jamesbraza) made their first contribution in [https://github.com/codespell-project/codespell/pull/3024](https://togithub.com/codespell-project/codespell/pull/3024)
- [@​barsnick](https://togithub.com/barsnick) made their first contribution in [https://github.com/codespell-project/codespell/pull/3057](https://togithub.com/codespell-project/codespell/pull/3057)
- [@​dependabot](https://togithub.com/dependabot) made their first contribution in [https://github.com/codespell-project/codespell/pull/3066](https://togithub.com/codespell-pro
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "every weekend" in timezone Etc/UTC, Automerge - "every weekend" in timezone Etc/UTC.
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/canonical/craft-store).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4wLjMiLCJ1cGRhdGVkSW5WZXIiOiIzNy44LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=-->
Evaluation history
| Date | Model | Scores | Action | Summary |
|---|---|---|---|---|
| qwen/qwen3.6-35b-a3b | — | — | Merged automated dependency updates via Renovate. Updated non-major versions of coverage, pytest, black, codespell, mypy, and pyright. Changes passed CI checks and received approval before automatic merge. | |
| qwen3.6-35b-a3b-mtp-q6 | — | — | Merged automated non-major dependency updates for coverage, pytest, black, codespell, mypy, and pyright. Renovate bot processed the changes with automerge enabled. |
Update history
No update history recorded yet.
Related issues
| Issue | Project | State | Summary | Similarity |
|---|---|---|---|---|
| #73 chore(deps): update development dependencies (non-major) | craft-application | merged | Merged automated non-major dependency updates for coverage, pytest, pytest-check, black, mypy, and pyright. Changes were approved by reviewers, passed CI, and merged automatically via Renovate. | |
| #174 chore(deps): update development dependencies (non-major) | craft-cli | merged | Merged automated non-major dependency updates for coverage, pytest, black, and pyright. Generated by Renovate, the changes were approved, passed CI checks, and merged without impacting code coverage. | |
| #216 chore(deps): update development dependencies (non-major) | craft-cli | merged | Merged automated non-major updates for development dependencies including coverage, pytest, black, mypy, and pyright. The change passed CI and code coverage checks, received two approvals, and was automatically merged per Renovate configuration. | |
| #192 chore(deps): update development dependencies (non-major) | craft-cli | merged | Merged automated non-major development dependency updates for coverage, pytest-mock, black, codespell, mypy, and pyright. Approved by three reviewers, passed CI, and merged automatically via Renovate with no coverage impact. | |
| #185 chore(deps): update development dependencies (non-major) | craft-store | merged | Merged automated non-major updates for development dependencies including coverage, pytest, codespell, mypy, and pyright. Approved by two reviewers, passed CI checks, and merged automatically via the Renovate bot. | |
| #148 chore(deps): update development dependencies (non-major) | craft-store | merged | Merged automated non-major updates for development dependencies including coverage, pytest, black, mypy, and pyright. Approved by two reviewers, passed CI, and merged via Renovate bot automerge. | |
| #254 chore(deps): update development dependencies (non-major) | craft-cli | merged | Automated development dependency updates for coverage, pytest, black, codespell, mypy, and pyright were merged. Approved by two reviewers, passed CI checks, and merged automatically via Renovate bot configuration. | |
| #174 chore(deps): update development dependencies (non-major) | starbase | merged | Merged automated dependency updates for coverage, pytest, black, ruff, and mypy via Renovate. CI passed, coverage remained at 100%, and changes were approved and merged without conflicts. | |
| #137 chore(deps): update development dependencies (non-major) | starbase | merged | Merged automated dependency update. Renovate bot upgraded non-major versions of coverage, pytest, pytest-mock, black, codespell, mypy, and pyright. PR passed CI, received approval, and was auto-merged into main. | |
| #244 chore(deps): update development dependencies (non-major) | craft-cli | merged | Merged automated non-major updates for development dependencies including coverage, pytest, pytest-mock, black, yamllint, mypy, and pyright. Approved by two reviewers, passed CI checks, and applied via Renovate automerge. |