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
9 changes: 1 addition & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,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 @@ -89,13 +89,6 @@ jobs:
path: 'presidio-structured'
extras: ''
spacy-models: ''
include:
Comment thread
SharonHart marked this conversation as resolved.
- python-version: '3.14'
component:
name: 'Analyzer'
path: 'presidio-analyzer'
extras: '--all-extras'
spacy-models: 'en_core_web_lg en_core_web_sm'
env:
COVERAGE_THRESHOLD: 90
PRIMARY_PYTHON: '3.13'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
### General
#### Changed
- Migrated CI and service-image dependency installation from Poetry to [uv](https://github.com/astral-sh/uv) with committed lockfiles, fixing prolonged dependency-resolution hangs and making builds reproducible.
- 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)
#### 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)

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"
Comment thread
SharonHart marked this conversation as resolved.
dependencies = [
"cryptography (>=48.0.1,<49.0.0)"
]
Expand Down
26 changes: 1 addition & 25 deletions presidio-anonymizer/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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"
Comment thread
SharonHart marked this conversation as resolved.

dependencies = [
"presidio-analyzer (>=2.2.0,<3.0.0)",
Expand Down
Loading
Loading