Skip to content

Bump levenshtein from 0.27.4 to 0.27.5 - #208

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/levenshtein-0.27.5
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/levenshtein-0.27.5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Bumps levenshtein from 0.27.4 to 0.27.5.

Release notes

Sourced from levenshtein's releases.

Release 0.27.5

Fixed

  • avoid unnecessary len calls on iterables. This avoids a crash when changing the size of the iterable after the len call.

Added

  • Add support for Python 3.15

Removed

  • removed support for Python 3.10
Changelog

Sourced from levenshtein's changelog.

v0.27.5

Fixed

  • avoid unnecessary len calls on iterables. This avoids a crash when changing the size of the iterable after the len call.

Added

  • Add support for Python 3.15

Removed

  • removed support for Python 3.10
Commits
  • 1efe2de Bump the github-actions group across 1 directory with 2 updates
  • 3073c26 add support for 3.15 and drop support for 3.10
  • 1558944 Avoid unnecessary len calls on iterables
  • 610846e fix str len overflow when size_t is 32 bit
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [levenshtein](https://github.com/rapidfuzz/Levenshtein) from 0.27.4 to 0.27.5.
- [Release notes](https://github.com/rapidfuzz/Levenshtein/releases)
- [Changelog](https://github.com/rapidfuzz/Levenshtein/blob/main/HISTORY.md)
- [Commits](rapidfuzz/Levenshtein@v0.27.4...v0.27.5)

---
updated-dependencies:
- dependency-name: levenshtein
  dependency-version: 0.27.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Sep 21, 2026

@villelaitila villelaitila left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed the diff (a one-line bump of Levenshtein in requirements.txt, 0.27.4 → 0.27.5). The change itself is trivial, but it's worth flagging a compatibility issue it introduces:

This bump breaks pip install -r requirements.txt on Python 3.10, which the package still claims to support.

  • setup.cfg declares python_requires = >=3.8 and lists classifiers for Python 3.8 through 3.13.
  • Per PyPI metadata, Levenshtein==0.27.4 requires Python >=3.10 (already inconsistent with the 3.8/3.9 classifiers, pre-existing before this PR).
  • Levenshtein==0.27.5 requires Python >=3.11 — matching the upstream changelog's "removed support for Python 3.10" note. No wheels exist for 3.10 at this version, so pip install -r requirements.txt (used per CLAUDE.md's documented setup flow) will now fail outright on Python 3.10, not just 3.8/3.9.

Since install_requires in setup.cfg pins only Levenshtein>=0.25.1 (unbounded), this doesn't break the installable package's advertised support directly, but it does break the pinned dev/CI requirements file for anyone still on 3.10, and widens the gap between the advertised Python support matrix and what's actually installable.

Suggest either:

  1. Capping this bump (stay on 0.27.4 or an intermediate version that still supports 3.10) if Python 3.10 support is still intended, or
  2. Dropping 3.10 (and re-checking 3.8/3.9) from setup.cfg's python_requires/classifiers to match reality, and merging as-is.

No other logical issues in this diff — it's a single dependency version bump with no code changes.


Generated by Claude Code

This branch has not been deployed

No deployments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant