Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Added support for Python 3.14 and free-threaded Python.
* In order to support free-threaded Python, move the burden of thread safety onto users.
Specifically: you must not mutate byte arrays and the like that are passed to `BytesAhoCorasick` APIs while those APIs are running.
* Dropped support for Python 3.9.

## 0.22.2

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "ahocorasick_rs"
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
# Technically not necessary to run, only needed for type checking...
"typing_extensions >= 4.6.0 ; python_version < '3.12'"
Expand Down