diff --git a/CHANGELOG.md b/CHANGELOG.md index ed781dd..e86e703 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * Added `allegati` subcommand to list and extract attachments. See #32 * Allow more than one DatiRitenuta tag in DatiGeneraliDocumento, thanks @tschager, see #38 +* Bump minimum supported Python version to 3.11 # New in version 0.1.6 diff --git a/publiccode.yml b/publiccode.yml index 995e1c9..f77b8cd 100644 --- a/publiccode.yml +++ b/publiccode.yml @@ -27,7 +27,7 @@ softwareType: library dependsOn: open: - name: Python - versionMin: '3.5' + versionMin: '3.11' optional: false maintenance: type: internal diff --git a/setup.cfg b/setup.cfg index df3940c..98c1e55 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,4 @@ mypy_path = stubs max-line-length = 120 [options] -python_requires = >= 3.6 +python_requires = >= 3.11