From 7836954ee1c75f0df314805942a86a8012df41b1 Mon Sep 17 00:00:00 2001 From: Jared O'Neal Date: Fri, 19 Jul 2024 10:25:05 -0500 Subject: [PATCH] (Issue #91) Intentionally alter docs. Made additions to .rst and python docstring docs to see that they are rendered locally by tox, that they are visible in the RTD test rendering for the PR, but not published in the official, public RTD docs. They did show up as expected with tox. NOTE: I want these to make it into main so that we do see them automatically incluced in the official, public RTD docs. We can then remove them as a hotfix to test the whole workflow. Note that these were also added in to generate a merge conflict with the changes made direclty on main at commit d53cbfe so that we can test the git workflow a bit as well. --- docs/source/intro.rst | 2 ++ src/Taweret/mix/bivariate_linear.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/source/intro.rst b/docs/source/intro.rst index 54786ca6..f0fd56cc 100644 --- a/docs/source/intro.rst +++ b/docs/source/intro.rst @@ -7,6 +7,8 @@ Taweret for Bayesian Model Mixing Bayesian Model Mixing --------------------- +__ALLOW THIS INTO MAIN AND REMOVE AS A HOTFIX TO TEST WORKFLOW.__ + In computer simulation studies, it is often the case where a set of theoretically \ sound models are considered, each intended to describe the true underlying physical phenomena of interest \ across a sub-region of the domain. These models could differ by their underlying assumptions \ diff --git a/src/Taweret/mix/bivariate_linear.py b/src/Taweret/mix/bivariate_linear.py index 55f7109a..d0bc55b7 100644 --- a/src/Taweret/mix/bivariate_linear.py +++ b/src/Taweret/mix/bivariate_linear.py @@ -19,6 +19,8 @@ class BivariateLinear(BaseMixer): ''' + __ALLOW THIS INTO MAIN AND REMOVE AS HOTFIX TO TEST WORKFLOW__. + Local linear Bayesian mixing of two models. This is a general class of mixing that offer both density (likelihood) and mean mixing methods. The default mixing method is linear mixing of two likelihoods.