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', 'py312', 'py313', 'py314']
target-version = ['py310', 'py311', 'py312', 'py313', 'py314']
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.75.0
current_version = 0.76.0
commit = True
tag = False
message = chore: Bump version from {current_version} to {new_version}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
strategy:
matrix:
python_version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down Expand Up @@ -90,7 +89,6 @@ jobs:
strategy:
matrix:
python_version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down Expand Up @@ -158,7 +156,7 @@ jobs:

- name: Check that compiled Python dependency manifests are up-to-date with their sources
# FIXME: There are issues related to testing with multiple Python versions.
if: ${{ startsWith(steps.set_up_python.outputs.python-version, '3.9.') }}
if: ${{ startsWith(steps.set_up_python.outputs.python-version, '3.10.') }}
run: |
source "$PYTHON_VIRTUALENV_ACTIVATE"
make python-deps-sync-check
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## 0.76.0 (2026-05-04)

- (PR #1029, 2026-04-29) Drop support for Python 3.9
- (PR #1028, 2026-04-30) Bump marshmallow from 4.0.1 to 4.3.0

## 0.75.0 (2026-04-15)

- (PR #1024, 2026-04-15) Fix Python version and caching in CI/CD
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ The full documentation is at <https://lib-cl-sii-python.readthedocs.io>.

## Supported Python versions

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

## Quickstart

Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[mypy]
python_version = 3.9
python_version = 3.10
platform = linux
mypy_path =
src
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
7 changes: 2 additions & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.9
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile --allow-unsafe --strip-extras requirements-dev.in
Expand Down Expand Up @@ -67,10 +67,7 @@ idna==3.7
importlib-metadata==8.7.0
# via
# -c requirements.txt
# build
# isort
# keyring
# twine
isort==6.1.0
# via -r requirements-dev.in
jaraco-classes==3.4.0
Expand Down Expand Up @@ -171,7 +168,7 @@ six==1.16.0
# via bleach
soupsieve==2.6
# via beautifulsoup4
tomli==2.2.1
tomli==2.4.1
# via
# black
# build
Expand Down
3 changes: 1 addition & 2 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# Note: To install a package from a Git VCS repository, see the following example:
# git+https://github.com/example/example.git@example-vcs-ref#egg=example-pkg[foo,bar]==1.42.3

backports-zoneinfo==0.2.1 ; python_version < "3.9" # Used by `djangorestframework`.
cryptography==46.0.7
defusedxml==0.7.1
django-filter>=24.2
Expand All @@ -14,7 +13,7 @@ djangorestframework>=3.10.3,<3.17
importlib-metadata==8.7.0
jsonschema==4.25.1
lxml==6.0.2
marshmallow==4.0.1
marshmallow==4.3.0
pydantic==2.12.5
pyOpenSSL==26.0.0
pytz==2025.2
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.9
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile --allow-unsafe --strip-extras requirements.in
Expand Down Expand Up @@ -44,7 +44,7 @@ lxml==6.0.2
# via
# -r requirements.in
# signxml
marshmallow==4.0.1
marshmallow==4.3.0
# via -r requirements.in
pycparser==2.22
# via cffi
Expand Down
2 changes: 1 addition & 1 deletion src/cl_sii/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

"""

__version__ = '0.75.0'
__version__ = '0.76.0'
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[tox]
envlist =
py39,
py310,
py311,
py312,
Expand All @@ -15,7 +14,6 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
Expand Down
Loading