Skip to content

Tags: elcorto/pwtools

Tags

1.3.0

Toggle 1.3.0's commit message
REL: bump version 1.2.3 -> 1.3.0

1.2.3

Toggle 1.2.3's commit message
REL: bump version to 1.2.3

1.2.2

Toggle 1.2.2's commit message
REL: bump version

1.2.1

Toggle 1.2.1's commit message
REL: bump version

1.2.0

Toggle 1.2.0's commit message
REL: bump version

1.1.0

Toggle 1.1.0's commit message
MNT: mpl: handle matplotlib deprecation

Use plt.subplots() instead of the old
    fig = plt.figure()
    ax = fig.add_subplot(111)

Solves:

MatplotlibDeprecationWarning: Adding an axes using the same arguments as
a previous axes currently reuses the earlier instance.  In a future
version, a new instance will always be created and returned.  Meanwhile,
this warning can be suppressed, and the future behavior ensured, by
passing a unique label to each axes instance.
  ax = fig.add_subplot(111)

However, matplotlib doesn't complain when we use the old-ish style in
fig_ax3d() so don't change that.

1.0.0

Toggle 1.0.0's commit message
MNT: num.poly_powers(): use list(itertools.product(...))