Skip to content
Open
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
9 changes: 1 addition & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
pull-requests: write
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
component:
- name: 'Analyzer'
path: 'presidio-analyzer'
Expand All @@ -88,13 +88,6 @@ jobs:
path: 'presidio-structured'
extras: ''
spacy-models: ''
include:

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Why is this removed?

- python-version: '3.14'
component:
name: 'Analyzer'
path: 'presidio-analyzer'
extras: '--all-extras'
spacy-models: 'en_core_web_lg en_core_web_sm'
env:
POETRY_CACHE_DIR: /mnt/poetry_cache
COVERAGE_THRESHOLD: 90
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ All notable changes to this project will be documented in this file.
#### Fixed
- Retried the Zensical documentation build on transient crashes (e.g. SIGKILL/exit 247) so the docs release pipeline no longer fails intermittently (Thanks @Copilot)

#### Changed
- Added Python 3.14 package support for `presidio-anonymizer`, `presidio-image-redactor`, `presidio-cli`, `presidio-structured`, and `presidio` by allowing Python `<3.15` and excluding `spacy==3.8.14` on Python 3.14 where applicable (#2096) (Thanks @Copilot)

## [2.2.363] - 2026-06-28
### General
#### Added
Expand Down
1 change: 1 addition & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Presidio is supported for the following python versions:
* 3.11
* 3.12
* 3.13
* 3.14

### PII anonymization on text

Expand Down
3 changes: 2 additions & 1 deletion presidio-anonymizer/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["presidio_anonymizer"]
urls = {Homepage = "https://github.com/data-privacy-stack/presidio"}
readme = "README.md"

requires-python = ">=3.10,<4.0"
requires-python = ">=3.10,<3.15"
dependencies = [
"cryptography (>=48.0.1,<49.0.0)"
]
Expand Down
3 changes: 2 additions & 1 deletion presidio-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["pii", "checker", "presidio_cli"]
urls = {Homepage = "https://github.com/data-privacy-stack/presidio"}
readme = "README.md"
include = ["conf/*", ".presidiocli"]
requires-python = ">=3.10,<3.14"
requires-python = ">=3.10,<3.15"

dependencies = [
"presidio-analyzer (>=2.2.0,<3.0.0)",
Expand Down
6 changes: 4 additions & 2 deletions presidio-image-redactor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["presidio_image_redactor"]
urls = {Homepage = "https://github.com/data-privacy-stack/presidio"}
readme = "README.md"
requires-python = ">=3.10,<3.14"
requires-python = ">=3.10,<3.15"

dependencies = [
"pillow (>=9.0.0,<13.0.0)",
Expand All @@ -31,7 +32,8 @@ dependencies = [
"azure-ai-formrecognizer (>=3.3.3,<4.0.0)",
"opencv-python (>=4.13.0.92,<5.0.0)",
"python-gdcm (>=3.0.24.1,<4.0.0)",
"spacy >=3.8.7,<4.0.0 ; python_version >= '3.13'"]
"spacy (>=3.8.7,<4.0.0) ; python_version >= '3.13' and python_version < '3.14'",
"spacy (>=3.8.7,!=3.8.14,<4.0.0) ; python_version >= '3.14'"]

[project.optional-dependencies]
server = [
Expand Down
3 changes: 2 additions & 1 deletion presidio-structured/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["presidio_structured"]
urls = {Homepage = "https://github.com/data-privacy-stack/presidio"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
requires-python = ">=3.10,<3.15"

dependencies = [
"presidio-analyzer (>=2.2.0,<3.0.0)",
Expand Down
3 changes: 2 additions & 1 deletion presidio/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["presidio"]
urls = {Homepage = "https://github.com/data-privacy-stack/presidio"}
readme = "README.md"

requires-python = ">=3.10,<3.14"
requires-python = ">=3.10,<3.15"
dependencies = [
"presidio-analyzer (>=2.2.0,<3.0.0)",
"presidio-anonymizer (>=2.2.0,<3.0.0)",
Expand Down
Loading