Skip to content

Commit

Permalink
Merge branch 'v4' into create-numpyro-op
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki authored May 12, 2021
2 parents 56e1688 + de74ff6 commit e779e10
Show file tree
Hide file tree
Showing 23 changed files with 432 additions and 1,465 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ jobs:
--ignore=pymc3/tests/test_special_functions.py
--ignore=pymc3/tests/test_updates.py
--ignore=pymc3/tests/test_examples.py
--ignore=pymc3/tests/test_glm.py
--ignore=pymc3/tests/test_glm_utils.py
--ignore=pymc3/tests/test_glm_linear.py
--ignore=pymc3/tests/test_gp.py
--ignore=pymc3/tests/test_model.py
--ignore=pymc3/tests/test_model_func.py
Expand All @@ -78,8 +75,6 @@ jobs:
pymc3/tests/test_distributions.py
pymc3/tests/test_distributions_random.py
pymc3/tests/test_examples.py
pymc3/tests/test_glm.py
pymc3/tests/test_glm_utils.py
pymc3/tests/test_gp.py
pymc3/tests/test_model.py
pymc3/tests/test_model_func.py
Expand Down
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
### Breaking Changes
- ⚠ Theano-PyMC has been replaced with Aesara, so all external references to `theano`, `tt`, and `pymc3.theanof` need to be replaced with `aesara`, `at`, and `pymc3.aesaraf` (see [4471](https://github.com/pymc-devs/pymc3/pull/4471)).
- ArviZ `plots` and `stats` *wrappers* were removed. The functions are now just available by their original names (see [#4549](https://github.com/pymc-devs/pymc3/pull/4471) and `3.11.2` release notes).
- The GLM submodule has been removed, please use [Bambi](https://bambinos.github.io/bambi/) instead.
- ...

### New Features
Expand Down
6 changes: 4 additions & 2 deletions docs/source/api/glm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ Generalized Linear Models

.. currentmodule:: pymc3.glm.linear

.. automodule:: pymc3.glm.linear
:members:
Generalized Linear Models are delegated to the
`Bambi <https://bambinos.github.io/bambi>`_.
library, a high-level Bayesian model-building
interface built on top of the PyMC3.
1 change: 0 additions & 1 deletion pymc3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def __set_compiler_flags():
from pymc3.distributions import *
from pymc3.distributions import transforms
from pymc3.exceptions import *
from pymc3.glm import *
from pymc3.math import (
expand_packed_triangular,
invlogit,
Expand Down
Loading

0 comments on commit e779e10

Please sign in to comment.