Skip to content

Commit 2842c9c

Browse files
Merge pull request #940 from cordada/deploy/v0.63.0
Deploy release v0.63.0
2 parents a2ce040 + da737dd commit 2842c9c

File tree

13 files changed

+615
-148
lines changed

13 files changed

+615
-148
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.62.0
2+
current_version = 0.63.0
33
commit = True
44
tag = False
55
message = chore: Bump version from {current_version} to {new_version}

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
python-version: "${{ matrix.python_version }}"
4646
check-latest: true
4747

48+
- name: Install Pip
49+
run: make python-pip-install
50+
4851
- name: Create Python Virtual Environment
4952
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
5053

HISTORY.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# History
22

3+
## 0.63.0 (2025-11-13)
4+
5+
- (PR #928, 2025-10-29) Do not install `setuptools` using Make tasks
6+
- (PR #929, 2025-10-29) Installing Pip version 24 in GitHub Actions fails when default's 25
7+
- (PR #907, 2025-10-29) chore(deps): Bump lxml from 5.4.0 to 6.0.2
8+
- (PR #934, 2025-11-03) chore(deps): Bump typing-extensions from 4.14.0 to 4.15.0
9+
- (PR #935, 2025-11-11) chore(deps): Bump django from 4.2.25 to 4.2.26
10+
- (PR #933, 2025-11-13) chore(deps): Bump pip-tools from 7.4.1 to 7.5.1
11+
- (PR #938, 2025-11-13) deps: Bump pip-tools from 7.5.1 to 7.5.2
12+
- (PR #917, 2025-11-13) chore(deps): Bump pip from 24.2 to 25.3
13+
- (PR #937, 2025-11-13) rcv: Refactor grouping logic for RCV parsing
14+
315
## 0.62.0 (2025-10-29)
416

517
- (PR #924, 2025-10-29) deps: Update `keyring` from 21.4.0 to 25.6.0

Makefile

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ PYTHON_PIP_VERSION_SPECIFIER = $(shell \
1010
grep -E '^pip==.+' --no-filename --only-matching --no-messages -- requirements{,-dev}.{txt,in} \
1111
| head -n 1 | sed 's/^pip//' \
1212
)
13-
PYTHON_SETUPTOOLS_VERSION_SPECIFIER = $(shell \
14-
grep -E '^setuptools==.+' --no-filename --only-matching --no-messages -- requirements{,-dev}.{txt,in} \
15-
| head -n 1 | sed 's/^setuptools//' \
16-
)
1713
PYTHON_VIRTUALENV_DIR = venv
1814
PYTHON_PIP_TOOLS_VERSION_SPECIFIER = $(shell \
1915
grep -E '^pip-tools==.+' --no-filename --only-matching --no-messages -- requirements{,-dev}.{txt,in} \
@@ -37,7 +33,7 @@ TOXENV ?= py310
3733
.PHONY: build dist deploy upload-release
3834
.PHONE: python-virtualenv
3935
.PHONY: python-deps-compile python-deps-sync-check python-pip-tools-install
40-
.PHONY: python-pip-install python-setuptools-install
36+
.PHONY: python-pip-install
4137

4238
help:
4339
@grep '^[a-zA-Z]' $(MAKEFILE_LIST) | sort | awk -F ':.*?## ' 'NF==2 {printf "\033[36m %-25s\033[0m %s\n", $$1, $$2}'
@@ -69,7 +65,7 @@ install-dev: ## Install for development
6965
python -m pip install --editable .
7066
python -m pip check
7167

72-
install-deps-dev: python-pip-install python-setuptools-install
68+
install-deps-dev: python-pip-install
7369
install-deps-dev: python-pip-tools-install
7470
install-deps-dev: ## Install dependencies for development
7571
python -m pip install -r requirements.txt
@@ -137,9 +133,6 @@ python-virtualenv: ## Create virtual Python environment
137133
python-pip-install: ## Install Pip
138134
$(PYTHON_PIP) install 'pip$(PYTHON_PIP_VERSION_SPECIFIER)'
139135

140-
python-setuptools-install: ## Install Setuptools
141-
$(PYTHON_PIP) install 'setuptools$(PYTHON_SETUPTOOLS_VERSION_SPECIFIER)'
142-
143136
python-deps-compile: $(patsubst %,python-deps-compile-%,$(PYTHON_PIP_TOOLS_SRC_FILES))
144137
python-deps-compile: ## Compile Python dependency manifests
145138

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies = [
2020
"cryptography>=43.0.0",
2121
"defusedxml>=0.6.0,<1",
2222
"jsonschema>=3.1.1",
23-
"lxml>=5.2.1,<6",
23+
"lxml>=5.2.1,<7",
2424
"marshmallow>=3,<5",
2525
"pydantic>=2.10.0,!=1.7.*,!=1.8.*,!=1.9.*",
2626
"pyOpenSSL>=24.0.0",

requirements-dev.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ coverage==7.10.7
1111
flake8==7.3.0
1212
isort==6.0.1
1313
mypy==1.18.2
14-
pip-tools==7.4.1
14+
pip-tools==7.5.2
1515
tox==4.27.0
1616
twine==6.2.0
1717
types-jsonschema==4.25.0.20250809

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ pathspec==0.9.0
111111
# via
112112
# black
113113
# mypy
114-
pip-tools==7.4.1
114+
pip-tools==7.5.2
115115
# via -r requirements-dev.in
116116
platformdirs==4.3.6
117117
# via
@@ -190,7 +190,7 @@ types-pytz==2025.2.0.20250809
190190
# via -r requirements-dev.in
191191
types-setuptools==80.9.0.20250809
192192
# via -r requirements-dev.in
193-
typing-extensions==4.14.0
193+
typing-extensions==4.15.0
194194
# via
195195
# -c requirements.txt
196196
# beautifulsoup4
@@ -214,7 +214,7 @@ zipp==3.20.2
214214
# importlib-metadata
215215

216216
# The following packages are considered to be unsafe in a requirements file:
217-
pip==24.2
217+
pip==25.3
218218
# via pip-tools
219219
setuptools==80.9.0
220220
# via

requirements.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ Django>=4.2
1313
djangorestframework>=3.10.3,<3.17
1414
importlib-metadata==8.7.0
1515
jsonschema==4.25.0
16-
lxml==5.4.0
16+
lxml==6.0.2
1717
marshmallow==4.0.1
1818
pydantic==2.11.7
1919
pyOpenSSL==25.1.0
2020
pytz==2025.2
2121
setuptools==80.9.0
2222
signxml==4.2.0
23-
typing-extensions==4.14.0
23+
typing-extensions==4.15.0

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cryptography==45.0.7
2525
# signxml
2626
defusedxml==0.7.1
2727
# via -r requirements.in
28-
django==4.2.25
28+
django==4.2.26
2929
# via
3030
# -r requirements.in
3131
# django-filter
@@ -40,7 +40,7 @@ jsonschema==4.25.0
4040
# via -r requirements.in
4141
jsonschema-specifications==2023.12.1
4242
# via jsonschema
43-
lxml==5.4.0
43+
lxml==6.0.2
4444
# via
4545
# -r requirements.in
4646
# signxml
@@ -68,7 +68,7 @@ signxml==4.2.0
6868
# via -r requirements.in
6969
sqlparse==0.5.0
7070
# via django
71-
typing-extensions==4.14.0
71+
typing-extensions==4.15.0
7272
# via
7373
# -r requirements.in
7474
# asgiref

src/cl_sii/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
55
"""
66

7-
__version__ = '0.62.0'
7+
__version__ = '0.63.0'

0 commit comments

Comments
 (0)