From b7b0902e06b65edc18a7f2b00919fcd3dd745182 Mon Sep 17 00:00:00 2001 From: Juan Orduz Date: Tue, 14 May 2024 15:24:59 +0200 Subject: [PATCH 1/3] Less than equal PyMC Version (#164) * Less than equal PyMC Version * improve bound --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f496c2e..23641cb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -pymc==5.15.0 +pymc<5.16.0 arviz>=0.18.0 numba matplotlib From 9fc4206ca38ee2ddd547a6cae3f2f02739d4a426 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 10:25:21 -0300 Subject: [PATCH 2/3] [pre-commit.ci] pre-commit autoupdate (#161) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.3.7 → v0.4.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.7...v0.4.4) - [github.com/pre-commit/mirrors-mypy: v1.9.0 → v1.10.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.9.0...v1.10.0) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6d47c39..dea7ee2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,14 +12,14 @@ ci: repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.7 + rev: v0.4.4 hooks: - id: ruff args: ["--fix", "--show-source"] - id: ruff-format args: ["--line-length=100"] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.9.0 + rev: v1.10.0 hooks: - id: mypy args: [--ignore-missing-imports] From 17634f9762c17e5c17b498ccadd60f8a7bef9edd Mon Sep 17 00:00:00 2001 From: Osvaldo A Martin Date: Tue, 14 May 2024 10:27:24 -0300 Subject: [PATCH 3/3] Bump version --- pymc_bart/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymc_bart/__init__.py b/pymc_bart/__init__.py index 1f133d8..892f0e3 100644 --- a/pymc_bart/__init__.py +++ b/pymc_bart/__init__.py @@ -36,7 +36,7 @@ "plot_pdp", "plot_variable_importance", ] -__version__ = "0.5.13" +__version__ = "0.5.14" pm.STEP_METHODS = list(pm.STEP_METHODS) + [PGBART]