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
2 changes: 1 addition & 1 deletion .black.cfg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
include = '\.pyi?$'
line-length = 100
skip-string-normalization = true
target-version = ['py39', 'py310', 'py311']
target-version = ['py39', 'py310', 'py311', 'py312']
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- name: Check Out VCS Repository
Expand Down Expand Up @@ -87,6 +88,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- name: Check Out VCS Repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: set_up_python
uses: actions/setup-python@v6.0.0
with:
python-version: "3.11"
python-version: "3.12"

- name: Restoring/Saving Cache
uses: actions/cache@v4.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
id: set_up_python
uses: actions/setup-python@v6.0.0
with:
python-version: "3.11"
python-version: "3.12"

- name: Create Python Virtual Environment
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ The full documentation is at <https://lib-cl-sii-python.readthedocs.io>.

## Supported Python versions

Only Python 3.9, 3.10, and 3.11. Python 3.8 and below will not work because we use some features
introduced in Python 3.9.
Only Python 3.9, 3.10, 3.11, and 3.12. Python 3.8 and below will not work because we use some
features introduced in Python 3.9.

## Quickstart

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"signxml>=4.0.0",
"typing-extensions>=4.0.1",
]
requires-python = ">=3.9, <3.12"
requires-python = ">=3.9, <3.13"
authors = [
{name = "Fyntex TI SpA", email = "no-reply@fyntex.ai"},
]
Expand All @@ -45,6 +45,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]

Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ envlist =
py39,
py310,
py311,
py312,

[testenv]
setenv =
Expand All @@ -15,3 +16,4 @@ basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
Loading