Skip to content

Commit a52ebef

Browse files
authored
ci: Update pre-commit revisions (probabl-ai#1409)
1 parent fcd401e commit a52ebef

File tree

10 files changed

+54
-61
lines changed

10 files changed

+54
-61
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ repos:
1111
- id: trailing-whitespace
1212

1313
- repo: https://github.com/crate-ci/typos
14-
rev: v1.26.0
14+
rev: v1.30.2
1515
hooks:
1616
- id: typos
1717

1818
- repo: https://github.com/kynan/nbstripout
19-
rev: 0.7.1
19+
rev: 0.8.1
2020
hooks:
2121
- id: nbstripout
2222
args: [--keep-id]
2323

2424
- repo: https://github.com/astral-sh/ruff-pre-commit
25-
rev: v0.6.9
25+
rev: v0.9.10
2626
hooks:
2727
- id: ruff
2828
files: ^(skore/(src|tests))|(examples)/

skore/src/skore/sklearn/_comparison/report.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ def __init__(
138138
ml_tasks = {report: report._ml_task for report in reports}
139139
if len(set(ml_tasks.values())) > 1:
140140
raise ValueError(
141-
f"Expected all estimators to have the same ML usecase; "
142-
f"got {ml_tasks}"
141+
f"Expected all estimators to have the same ML usecase; got {ml_tasks}"
143142
)
144143

145144
if report_names is None:
@@ -251,9 +250,9 @@ def cache_predictions(
251250
if n_jobs is None:
252251
n_jobs = self.n_jobs
253252

254-
assert (
255-
self._progress_info is not None
256-
), "The rich Progress class was not initialized."
253+
assert self._progress_info is not None, (
254+
"The rich Progress class was not initialized."
255+
)
257256
progress = self._progress_info["current_progress"]
258257
main_task = self._progress_info["current_task"]
259258

skore/src/skore/sklearn/_cross_validation/report.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ def _fit_estimator_reports(self) -> list[EstimatorReport]:
165165
estimator_reports : list of EstimatorReport
166166
The estimator reports.
167167
"""
168-
assert (
169-
self._progress_info is not None
170-
), "The rich Progress class was not initialized."
168+
assert self._progress_info is not None, (
169+
"The rich Progress class was not initialized."
170+
)
171171
progress = self._progress_info["current_progress"]
172172
task = self._progress_info["current_task"]
173173

@@ -273,9 +273,9 @@ def cache_predictions(
273273
if n_jobs is None:
274274
n_jobs = self.n_jobs
275275

276-
assert (
277-
self._progress_info is not None
278-
), "The rich Progress class was not initialized."
276+
assert self._progress_info is not None, (
277+
"The rich Progress class was not initialized."
278+
)
279279
progress = self._progress_info["current_progress"]
280280
main_task = self._progress_info["current_task"]
281281

@@ -337,8 +337,7 @@ def y(self, value: Any) -> None:
337337

338338
def _get_help_panel_title(self) -> str:
339339
return (
340-
f"[bold cyan]Tools to diagnose estimator "
341-
f"{self.estimator_name_}[/bold cyan]"
340+
f"[bold cyan]Tools to diagnose estimator {self.estimator_name_}[/bold cyan]"
342341
)
343342

344343
def _get_help_legend(self) -> str:

skore/src/skore/sklearn/_estimator/metrics_accessor.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -1130,8 +1130,7 @@ def _log_loss(
11301130
response_method="predict_proba",
11311131
)
11321132
assert isinstance(result, float), (
1133-
"The log loss should be a float, got "
1134-
f"{type(result)} with value {result}."
1133+
f"The log loss should be a float, got {type(result)} with value {result}."
11351134
)
11361135
return result
11371136

@@ -1248,8 +1247,7 @@ def _r2(
12481247
)
12491248
return result
12501249
assert isinstance(result, float), (
1251-
"The R² score should be a float, got "
1252-
f"{type(result)} with value {result}."
1250+
f"The R² score should be a float, got {type(result)} with value {result}."
12531251
)
12541252
return result
12551253

@@ -1366,8 +1364,7 @@ def _rmse(
13661364
)
13671365
return result
13681366
assert isinstance(result, float), (
1369-
"The RMSE score should be a float, got "
1370-
f"{type(result)} with value {result}."
1367+
f"The RMSE score should be a float, got {type(result)} with value {result}."
13711368
)
13721369
return result
13731370

skore/src/skore/sklearn/_estimator/report.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,9 @@ def cache_predictions(
258258
)
259259
)
260260
# trigger the computation
261-
assert (
262-
self._progress_info is not None
263-
), "The rich Progress class was not initialized."
261+
assert self._progress_info is not None, (
262+
"The rich Progress class was not initialized."
263+
)
264264
progress = self._progress_info["current_progress"]
265265
task = self._progress_info["current_task"]
266266
total_iterations = len(response_methods) * len(pos_labels) * len(data_sources)
@@ -333,8 +333,7 @@ def estimator_name_(self) -> str:
333333

334334
def _get_help_panel_title(self) -> str:
335335
return (
336-
f"[bold cyan]Tools to diagnose estimator "
337-
f"{self.estimator_name_}[/bold cyan]"
336+
f"[bold cyan]Tools to diagnose estimator {self.estimator_name_}[/bold cyan]"
338337
)
339338

340339
def _get_help_legend(self) -> str:

skore/src/skore/sklearn/_plot/precision_recall_curve.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@ def plot(
198198
self.lines_ = []
199199
default_line_kwargs: dict[str, Any] = {}
200200
if len(self.precision) == 1: # binary-classification
201-
assert (
202-
self.pos_label is not None
203-
), "pos_label should not be None with binary classification."
201+
assert self.pos_label is not None, (
202+
"pos_label should not be None with binary classification."
203+
)
204204
if len(self.precision[self.pos_label]) == 1: # single-split
205205
if pr_curve_kwargs is None:
206206
pr_curve_kwargs = {}

skore/src/skore/sklearn/_plot/roc_curve.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ def plot(
202202
self.lines_: list[Line2D] = []
203203
default_line_kwargs: dict[str, Any] = {}
204204
if len(self.fpr) == 1: # binary-classification
205-
assert (
206-
self.pos_label is not None
207-
), "pos_label should not be None with binary classification."
205+
assert self.pos_label is not None, (
206+
"pos_label should not be None with binary classification."
207+
)
208208
if len(self.fpr[self.pos_label]) == 1: # single-split
209209
if roc_curve_kwargs is None:
210210
roc_curve_kwargs = {}

skore/tests/unit/sklearn/estimator/test_estimator.py

+16-16
Original file line numberDiff line numberDiff line change
@@ -785,9 +785,9 @@ def test_estimator_report_interaction_cache_metrics(regression_multioutput_data)
785785
if any(item == multioutput for item in cached_key):
786786
should_raise = False
787787
break
788-
assert (
789-
not should_raise
790-
), f"The value {multioutput} should be stored in one of the cache keys"
788+
assert not should_raise, (
789+
f"The value {multioutput} should be stored in one of the cache keys"
790+
)
791791
assert result_r2_raw_values.shape == (2,)
792792

793793
multioutput = "uniform_average"
@@ -797,9 +797,9 @@ def test_estimator_report_interaction_cache_metrics(regression_multioutput_data)
797797
if any(item == multioutput for item in cached_key):
798798
should_raise = False
799799
break
800-
assert (
801-
not should_raise
802-
), f"The value {multioutput} should be stored in one of the cache keys"
800+
assert not should_raise, (
801+
f"The value {multioutput} should be stored in one of the cache keys"
802+
)
803803
assert isinstance(result_r2_uniform_average, float)
804804

805805

@@ -823,9 +823,9 @@ def custom_metric(y_true, y_pred, threshold=0.5):
823823
if any(item == threshold for item in cached_key):
824824
should_raise = False
825825
break
826-
assert (
827-
not should_raise
828-
), f"The value {threshold} should be stored in one of the cache keys"
826+
assert not should_raise, (
827+
f"The value {threshold} should be stored in one of the cache keys"
828+
)
829829

830830
assert isinstance(result, float)
831831
assert result == pytest.approx(
@@ -843,9 +843,9 @@ def custom_metric(y_true, y_pred, threshold=0.5):
843843
if any(item == threshold for item in cached_key):
844844
should_raise = False
845845
break
846-
assert (
847-
not should_raise
848-
), f"The value {threshold} should be stored in one of the cache keys"
846+
assert not should_raise, (
847+
f"The value {threshold} should be stored in one of the cache keys"
848+
)
849849

850850
assert isinstance(result, float)
851851
assert result == pytest.approx(
@@ -887,9 +887,9 @@ def custom_metric(y_true, y_pred, some_weights):
887887
if any(item == hash_weights for item in cached_key):
888888
should_raise = False
889889
break
890-
assert (
891-
not should_raise
892-
), "The hash of the weights should be stored in one of the cache keys"
890+
assert not should_raise, (
891+
"The hash of the weights should be stored in one of the cache keys"
892+
)
893893

894894
assert isinstance(result, float)
895895
assert result == pytest.approx(
@@ -1064,7 +1064,7 @@ def test_estimator_report_get_X_y_and_data_source_hash_error():
10641064
report = EstimatorReport(estimator)
10651065

10661066
err_msg = re.escape(
1067-
"Invalid data source: unknown. Possible values are: " "test, train, X_y."
1067+
"Invalid data source: unknown. Possible values are: test, train, X_y."
10681068
)
10691069
with pytest.raises(ValueError, match=err_msg):
10701070
report.metrics.log_loss(data_source="unknown")

skore/tests/unit/sklearn/test_base.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ def test_get_cached_response_values(
8989

9090
assert response_values.shape == y.shape
9191
initial_calls = getattr(estimator, f"n_call_{response_method}")
92-
assert (
93-
initial_calls == 1
94-
), f"Expected 1 call for {response_method}, got {initial_calls}"
92+
assert initial_calls == 1, (
93+
f"Expected 1 call for {response_method}, got {initial_calls}"
94+
)
9595

9696
# Reload from the cache
9797
response_values = _get_cached_response_values(cache=cache, **params)
@@ -109,17 +109,17 @@ def test_get_cached_response_values(
109109
assert response_values.shape == y.shape
110110
current_calls = getattr(estimator, f"n_call_{response_method}")
111111
expected_calls = initial_calls + (1 if pos_label_sensitive else 0)
112-
assert (
113-
current_calls == expected_calls
114-
), f"Unexpected number of calls for different pos_label in {response_method}"
112+
assert current_calls == expected_calls, (
113+
f"Unexpected number of calls for different pos_label in {response_method}"
114+
)
115115

116116
# Should reload completely from the cache
117117
response_values = _get_cached_response_values(cache=cache, **params)
118118
assert response_values.shape == y.shape
119119
current_calls = getattr(estimator, f"n_call_{response_method}")
120-
assert (
121-
current_calls == expected_calls
122-
), f"Unexpected number of calls for different pos_label in {response_method}"
120+
assert current_calls == expected_calls, (
121+
f"Unexpected number of calls for different pos_label in {response_method}"
122+
)
123123

124124

125125
@pytest.mark.parametrize(
@@ -233,7 +233,7 @@ def test_base_accessor_get_X_y_and_data_source_hash_error():
233233
accessor = MockAccessor(parent=report)
234234

235235
err_msg = re.escape(
236-
"Invalid data source: unknown. Possible values are: " "test, train, X_y."
236+
"Invalid data source: unknown. Possible values are: test, train, X_y."
237237
)
238238
with pytest.raises(ValueError, match=err_msg):
239239
accessor._get_X_y_and_data_source_hash(data_source="unknown")

skore/tests/unit/sklearn/test_cross_validation.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,7 @@ def _check_metrics_names(result, expected_metrics, expected_nb_stats):
403403
normalized_idx = _normalize_metric_name(idx)
404404
matches = [metric for metric in normalized_expected if metric == normalized_idx]
405405
assert len(matches) == 1, (
406-
f"No match found for index '{idx}' in expected metrics: "
407-
f" {expected_metrics}"
406+
f"No match found for index '{idx}' in expected metrics: {expected_metrics}"
408407
)
409408

410409

0 commit comments

Comments
 (0)