Add patch for compatibility with newer numpy versions #21

Merged
mih merged 1 commit from numpy-compat into master 2023-10-11 15:05:16 +00:00

View file

@ -12,6 +12,11 @@ import sys
import matplotlib.pyplot as plt
from matplotlib.lines import Line2D
import numpy as np
try:
np.bool
except AttributeError:
# monkey patch to be able to use with older seaborn version
np.bool = np.bool_
import pandas as pd
from scipy.signal import (
butter,