Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1df7282

Browse filesBrowse files
Merge pull request christophmark#35 from EzzEddin/patch-1
Replace the deprecated scipy.misc with scipy.special
2 parents 166dd18 + 6fffcff commit 1df7282
Copy full SHA for 1df7282

File tree

Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed

‎bayesloop/core.py

Copy file name to clipboardExpand all lines: bayesloop/core.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
import matplotlib.pyplot as plt
1313
from mpl_toolkits.mplot3d import Axes3D
1414
from scipy.optimize import minimize
15-
from scipy.misc import factorial
16-
from scipy.misc import logsumexp
15+
from scipy.special import factorial
16+
from scipy.special import logsumexp
1717
from scipy.special import beta as beta_func
1818
import sympy.abc as abc
1919
from sympy import Symbol

‎bayesloop/observationModels.py

Copy file name to clipboardExpand all lines: bayesloop/observationModels.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from sympy import lambdify
1313
from sympy.stats import density
1414
from .jeffreys import getJeffreysPrior
15-
from scipy.misc import factorial
15+
from scipy.special import factorial
1616
from scipy.special import iv
1717
from .exceptions import ConfigurationError, PostProcessingError
1818
from .helper import cint, oint, freeSymbols

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.