From 80684371665c1800c1440463a1485e4094db45f8 Mon Sep 17 00:00:00 2001 From: OttoVintola Date: Tue, 9 Jun 2026 16:32:24 +0300 Subject: [PATCH] loosen python version constraints --- pyproject.toml | 2 +- python/tests/test_sampler.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b67a595..206ca11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ {name = "Otto Vintola", email="hello@ottovintola.com" }, ] description = "Rust implementation of Bayesian Additive Regression Trees for Probabilistic programming with PyMC" -requires-python = ">=3.12, <3.14" +requires-python = ">=3.12, <3.15" classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", diff --git a/python/tests/test_sampler.py b/python/tests/test_sampler.py index 61885e7..59f1e28 100644 --- a/python/tests/test_sampler.py +++ b/python/tests/test_sampler.py @@ -8,7 +8,7 @@ NUM_DRAWS = 600 NUM_CHAINS = 4 BATCH_SIZE = (0.1, 0.1) -NUM_TREES = 50 +NUM_TREES = 10 NUM_PARTICLES = 10 RANDOM_SEED = 42