From 9e8058f56bbf5dffa259d8dfab235cb1333ac6f8 Mon Sep 17 00:00:00 2001 From: Laurent Sorber Date: Mon, 1 Apr 2024 12:00:25 +0000 Subject: [PATCH] =?UTF-8?q?bump(release):=20v0.2.1=20=E2=86=92=20v0.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- tests/test_coherent_linear_quantile_regressor.py | 4 ---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e7cecf..17dd413 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.2.2 (2024-04-01) + +### Fix + +- xfail sklearn's check_regressors_int (#9) + ## v0.2.1 (2024-03-30) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 87a78d5..df59f22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] # https://python-poetry.org/docs/pyproject/ name = "conformal-tights" -version = "0.2.1" +version = "0.2.2" description = "A scikit-learn meta-estimator for computing tight conformal predictions" authors = ["Laurent Sorber "] readme = "README.md" diff --git a/tests/test_coherent_linear_quantile_regressor.py b/tests/test_coherent_linear_quantile_regressor.py index 66fca27..ee5cb9b 100644 --- a/tests/test_coherent_linear_quantile_regressor.py +++ b/tests/test_coherent_linear_quantile_regressor.py @@ -1,15 +1,11 @@ """Test the Coherent Linear Quantile Regressor.""" -import os - import numpy as np -import pytest from sklearn.utils.estimator_checks import check_estimator from conformal_tights._coherent_linear_quantile_regressor import CoherentLinearQuantileRegressor -@pytest.mark.skipif(os.getenv("CI") == "true", reason="Skip on GitHub Actions") def test_sklearn_check_estimator() -> None: """Check that the meta-estimator conforms to sklearn's standards.""" model = CoherentLinearQuantileRegressor(quantiles=np.array([0.5]))