From 92478032909b8067fea68ae90e88943481a1be5f Mon Sep 17 00:00:00 2001 From: pubpub-zz <4083478+pubpub-zz@users.noreply.github.com> Date: Mon, 16 Sep 2024 19:50:13 +0200 Subject: [PATCH] iaw comments --- CHANGELOG.md | 3 +++ pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1c302ac8..89bc2805b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Version 5.0.0, 2024-09-15 +** Notice : this version drops support to Python 3.7 (not maintained since June 23), PdfMerger(use PdfWriter instead) and AnnotationBuilder(use annotations instead) ** + + ### Deprecations (DEP) - Deprecate PdfMerger, AnnotationBuilder and other deprecations cleanup (#2813) - Drop Python 3.7 support (#2793) diff --git a/pyproject.toml b/pyproject.toml index c14e14f84..9d168ddf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,8 +45,8 @@ full = [ "Pillow>=10.3.0", ] crypto = [ - "cryptography; python_version >= '3.8'", - "PyCryptodome; python_version >= '3.6'", + "cryptography; python_version >= '3.7'", + "PyCryptodome; python_version == '3.6'", ] image = ["Pillow>=10.3.0"] dev = ["black", "pip-tools", "pre-commit<2.18.0", "pytest-cov", "pytest-socket", "pytest-timeout", "flit", "wheel", "pytest-xdist"]