Skip to content

Commit

Permalink
ignorable labels in MultiplePSD.plot_envelope() + update version (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
CommonClimate authored Aug 13, 2024
1 parent 052d213 commit dce9c80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyleoclim/core/psds.py
Original file line number Diff line number Diff line change
Expand Up @@ -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})')

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit dce9c80

Please sign in to comment.