diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e587bb5..4c4025e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -67,7 +67,7 @@ jobs: pattern: artifact-* merge-multiple: true - - uses: pypa/gh-action-pypi-publish@v1.12.2 + - uses: pypa/gh-action-pypi-publish@v1.12.3 with: user: __token__ password: ${{ secrets.PYPI_PASSWORD }} diff --git a/quantile_forest/_quantile_forest.py b/quantile_forest/_quantile_forest.py index c9f25bd..cf59940 100755 --- a/quantile_forest/_quantile_forest.py +++ b/quantile_forest/_quantile_forest.py @@ -1301,7 +1301,7 @@ class RandomForestQuantileRegressor(BaseForestQuantileRegressor): >>> qrf.fit(X[:1000], y[:1000]) RandomForestQuantileRegressor(random_state=0) >>> qrf.score(X, y, quantiles=0.5) - 0.359... + 0.35... """ def __init__(