You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some breaking changes in the arrow 1.0 release. I noticed when using toyplot.locator.Timestamp, as the ticks() function will crash.
Toyplot doesn't pin the arrow dependency, so pip will install the latest version by default.
Notably, timestamp has been renamed to int_timestamp, and replaced by a function timestamp(). So the various tick generators need to either reference int_timestamp or call timestamp().
I'm not sure which is better for backwards compatibility.
The text was updated successfully, but these errors were encountered:
There are some breaking changes in the arrow 1.0 release. I noticed when using toyplot.locator.Timestamp, as the
ticks()
function will crash.Toyplot doesn't pin the arrow dependency, so pip will install the latest version by default.
Notably,
timestamp
has been renamed toint_timestamp
, and replaced by a functiontimestamp()
. So the various tick generators need to either referenceint_timestamp
or calltimestamp()
.I'm not sure which is better for backwards compatibility.
The text was updated successfully, but these errors were encountered: