Skip to content

Commit 9e8058f

Browse files
committed
bump(release): v0.2.1 β†’ v0.2.2
1 parent 9fea615 commit 9e8058f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.2.2 (2024-04-01)
2+
3+
### Fix
4+
5+
- xfail sklearn's check_regressors_int (#9)
6+
17
## v0.2.1 (2024-03-30)
28

39
### Fix

β€Žpyproject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry] # https://python-poetry.org/docs/pyproject/
66
name = "conformal-tights"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "A scikit-learn meta-estimator for computing tight conformal predictions"
99
authors = ["Laurent Sorber <[email protected]>"]
1010
readme = "README.md"

β€Žtests/test_coherent_linear_quantile_regressor.pyβ€Ž

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
"""Test the Coherent Linear Quantile Regressor."""
22

3-
import os
4-
53
import numpy as np
6-
import pytest
74
from sklearn.utils.estimator_checks import check_estimator
85

96
from conformal_tights._coherent_linear_quantile_regressor import CoherentLinearQuantileRegressor
107

118

12-
@pytest.mark.skipif(os.getenv("CI") == "true", reason="Skip on GitHub Actions")
139
def test_sklearn_check_estimator() -> None:
1410
"""Check that the meta-estimator conforms to sklearn's standards."""
1511
model = CoherentLinearQuantileRegressor(quantiles=np.array([0.5]))

0 commit comments

Comments
Β (0)