Skip to content

Commit

Permalink
bump(release): v0.2.1 → v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber committed Apr 1, 2024
1 parent 9fea615 commit 9e8058f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
readme = "README.md"
Expand Down
4 changes: 0 additions & 4 deletions tests/test_coherent_linear_quantile_regressor.py
Original file line number Diff line number Diff line change
@@ -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]))
Expand Down

0 comments on commit 9e8058f

Please sign in to comment.