Skip to content

Commit 079bbce

Browse files
committed
Fix lint, add release notes
1 parent 33fef97 commit 079bbce

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

RELEASE-NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050

5151
- `nuts_kwargs` and `step_kwargs` have been deprecated in favor of using the standard `kwargs` to pass optional step method arguments.
5252
- `SGFS` and `CSG` have been removed (Fix for [#3353](https://github.com/pymc-devs/pymc3/issues/3353)). They have been moved to [pymc3-experimental](https://github.com/pymc-devs/pymc3-experimental).
53-
- References to `live_plot` and corresponding notebooks have been removed.
53+
- References to `live_plot` and corresponding notebooks have been removed.
54+
- Function `approx_hessian` was removed, due to `numdifftools` becoming incompatible with current `scipy`. The function was already optional, only available to a user who installed `numdifftools` separately, and not hit on any common codepaths. [#3485](https://github.com/pymc-devs/pymc3/pull/3485).
5455

5556
## PyMC3 3.6 (Dec 21 2018)
5657

pymc3/tests/test_distributions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
from .helpers import SeededTest, select_by_precision
55
from ..vartypes import continuous_types
6-
from ..model import Model, Point, Potential, Deterministic
7-
from ..blocking import DictToVarBijection, DictToArrayBijection, ArrayOrdering
6+
from ..model import Model, Point, Deterministic
7+
from ..blocking import DictToVarBijection
88
from ..distributions import (
99
DensityDist, Categorical, Multinomial, VonMises, Dirichlet,
1010
MvStudentT, MvNormal, MatrixNormal, ZeroInflatedPoisson,

0 commit comments

Comments
 (0)