sierra-research 1.3.5__py3-none-any.whl → 1.3.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
sierra/core/config.py CHANGED
@@ -45,7 +45,7 @@ def mpl_init():
45
45
  import matplotlib.pyplot as plt
46
46
 
47
47
  # Set MPL style
48
- plt.style.use('seaborn-colorblind')
48
+ plt.style.use('seaborn-v0_8-colorblind')
49
49
 
50
50
 
51
51
  # Actually initialize matplotlib
sierra/core/utils.py CHANGED
@@ -365,7 +365,7 @@ def df_fill(df: pd.DataFrame, policy: str) -> pd.DataFrame:
365
365
 
366
366
 
367
367
  @retry(OSError, tries=10, delay=0.100, backoff=1.1) # type:ignore
368
- def pickle_dump(obj: object, f: tp.IO) -> None:
368
+ def pickle_dump(obj: object, f) -> None:
369
369
  pickle.dump(obj, f)
370
370
 
371
371
 
sierra/version.py CHANGED
@@ -9,4 +9,4 @@
9
9
 
10
10
  # Project packages
11
11
 
12
- __version__ = "1.3.5"
12
+ __version__ = "1.3.6"