moorepants / resonance

Learning Mechanical Vibration Engineering Through Computation
https://moorepants.github.io/resonance
MIT License
47 stars 12 forks source link

Deprecation warnings from Python 3.7 #190

Closed moorepants closed 4 years ago

moorepants commented 6 years ago

Seeing this on Travis now.

/home/travis/miniconda3/envs/resonance-dev/lib/python3.7/site-packages/pandas/core/dtypes/inference.py:6: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  from collections import Iterable
/home/travis/miniconda3/envs/resonance-dev/lib/python3.7/site-packages/pandas/core/tools/datetimes.py:3: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
  from collections import MutableMapping
/home/travis/build/moorepants/resonance/resonance/linear_systems.py:93: DeprecationWarning: inspect.getargspec() is deprecated, use inspect.signature() or inspect.getfullargspec()
  args = [self._get_par_vals(k) for k in getargspec(f).args]