From 240688db46336e7e05d2985c4f0c5ce1c866a843 Mon Sep 17 00:00:00 2001 From: CommonClimate Date: Tue, 13 Aug 2024 15:48:09 -0700 Subject: [PATCH] ignorable labels in MultiplePSD.plot_envelope() + update version --- pyleoclim/core/psds.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyleoclim/core/psds.py b/pyleoclim/core/psds.py index c41ecff7..7bfabb37 100644 --- a/pyleoclim/core/psds.py +++ b/pyleoclim/core/psds.py @@ -1365,7 +1365,7 @@ def plot_envelope(self, figsize=[10, 4], qs=[0.025, 0.5, 0.975], self.psd_list[idx].plot( in_loglog=in_loglog, in_period=in_period, xlabel=xlabel, ylabel=ylabel, xlim=xlim, ylim=ylim, xticks=xticks, yticks=yticks, ax=ax, color='gray', alpha=members_alpha, - zorder=99, linewidth=members_lw, + zorder=99, linewidth=members_lw, label='_ignore' ) ax.plot(np.nan, np.nan, color='gray', label=f'example members (n={members_plot_num})') diff --git a/setup.py b/setup.py index b3bace43..c5cfbd9d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -version = '1.0.1b0' +version = '1.1.0b0' # Read the readme file contents into variable def read(fname):