From 2a8190948d0c6d52226fbf21c0acb28ced451228 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 15 Dec 2024 01:08:40 -0800 Subject: [PATCH] Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3 (#108) * Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3 Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.12.2 to 1.12.3. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.12.2...v1.12.3) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Update _quantile_forest.py --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Reid Johnson --- .github/workflows/publish.yml | 2 +- quantile_forest/_quantile_forest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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__(