Skip to content

Remove GLM submodule in v4 #4682

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
16 changes: 0 additions & 16 deletions pymc3/glm/__init__.py

This file was deleted.

147 changes: 0 additions & 147 deletions pymc3/glm/families.py

This file was deleted.

Loading