From 3e1f5a43feaa88551cb2a64b48cf55046518fbec Mon Sep 17 00:00:00 2001 From: Guillermo Candia Huerta Date: Wed, 6 May 2026 17:23:05 -0400 Subject: [PATCH 1/2] chore(deps): Restrict python version to <3.11 - restrict python version to <3.11 to prevent not tested versions being selected at release Ref: https://app.shortcut.com/cordada/story/20072/ --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8f7e0d7..d3832bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta" name = "pe-sunat" # version = "" dependencies = [] -requires-python = ">=3.9" +requires-python = ">=3.9, <3.11" authors = [ {name = "Cordada SpA", email = "no-reply@cordada.com"}, ] From 25e1c0976b0941da9f2f9127487a16bf71c5c633 Mon Sep 17 00:00:00 2001 From: Guillermo Candia Huerta Date: Wed, 6 May 2026 17:53:48 -0400 Subject: [PATCH 2/2] chore: Update history for new version --- CHANGELOG.md | 4 ++++ src/cordada/pe_sunat/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db8a184..cc5f34e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.9.0 (2026-05-06) + +- (PR #275, 2026-05-06) chore(deps): Restrict python version to <3.11 + ## 1.8.0 (2026-05-06) - (PR #225, 2025-05-20) chore: Bump setuptools from 75.8.2 to 78.1.1 diff --git a/src/cordada/pe_sunat/__init__.py b/src/cordada/pe_sunat/__init__.py index be82826..aa1af6a 100644 --- a/src/cordada/pe_sunat/__init__.py +++ b/src/cordada/pe_sunat/__init__.py @@ -2,4 +2,4 @@ PE-SUNAT Python Library """ -__version__ = '1.6.0' +__version__ = '1.9.0'