Skip to content

Commit 0e19a25

Browse files
authored
Merge pull request #140 from eda-labs/bumps
update packages
2 parents 3324544 + b2740ec commit 0e19a25

File tree

3 files changed

+167
-137
lines changed

3 files changed

+167
-137
lines changed

clab_connector/services/status/node_sync_checker.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,16 @@ def list_available_namespaces(self) -> list[str]:
563563
)
564564

565565
if data:
566-
return extract_k8s_names(data, lambda name: name.startswith("clab-"))
566+
namespaces = extract_k8s_names(
567+
data, lambda name: name.startswith("clab-")
568+
)
569+
if endpoint:
570+
logger.info(
571+
"Found %d clab namespaces via endpoint %s",
572+
len(namespaces),
573+
endpoint,
574+
)
575+
return namespaces
567576

568577
return []
569578

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ dependencies = [
1212
"bcrypt==5.0.0",
1313
"certifi==2025.10.5",
1414
"cffi==2.0.0",
15-
"charset-normalizer==3.4.3",
16-
"cryptography==46.0.2",
17-
"idna==3.10",
15+
"charset-normalizer==3.4.4",
16+
"cryptography==46.0.3",
17+
"idna==3.11",
1818
"jinja2==3.1.6",
1919
"kubernetes==33.1.0",
2020
"markupsafe==3.0.3",
@@ -26,7 +26,7 @@ dependencies = [
2626
"typer==0.19.2",
2727
"urllib3==2.5.0",
2828
"click==8.3.0",
29-
"rich>=14.1.0",
29+
"rich>=14.2.0",
3030
]
3131

3232
[project.scripts]
@@ -138,5 +138,5 @@ dev = [
138138
"mypy>=1.18.2",
139139
"pytest>=8.4.2",
140140
"pytest-cov>=7.0.0",
141-
"ruff>=0.12.4",
141+
"ruff>=0.14.2",
142142
]

0 commit comments

Comments
 (0)