Skip to content

Commit

Permalink
[SYNC] Use relocated scipy functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ikajic authored and arvoelke committed Jun 4, 2019
1 parent 098cc34 commit 882fd16
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Release History
0.5.2 (unreleased)
==================

**Fixed**

- Solved an issue where scipy.misc imports were relocated.
(`#182 <https://github.com/arvoelke/nengolib/pull/182>`_)

0.5.1 (April 17, 2019)
======================

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Aaron Voelker <[email protected]>
Ivana Kajić <[email protected]> (PR #182)
5 changes: 3 additions & 2 deletions nengolib/synapses/analog.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
import numpy as np
import warnings
from scipy.misc import pade, factorial
from scipy.interpolate import pade
from scipy.special import factorial

from nengo.utils.compat import is_integer

Expand Down Expand Up @@ -418,7 +419,7 @@ def PadeDelay(theta, order, p=None):
:func:`.pade_delay_error`
:class:`.RollingWindow`
:func:`.DiscreteDelay`
:func:`scipy.misc.pade`
:func:`scipy.interpolate.pade`
Notes
-----
Expand Down

0 comments on commit 882fd16

Please sign in to comment.