Closed flokli closed 7 years ago
All Python 3.2 builds will fail, as support for Python 3.0-3.2 has been dropped from pip. #39 addresses this.
Would this work for you?
72345c4573d588170bdd201a604395bf15d83957
@gweis Yes, this will also work for me, closing this PR. Thanks :-)
I annotated some things in 72345c4.
This will allow
isodate
to support addition and substraction witharrow
objects.Currently, the
__radd__
and__rsub__
methods are pending on crsmithdev/arrow#344, asarrow
currently raisesTypeError
instead of returningNotImplemented
(which results into python not looking atisodate
's methods for that).isodate
suffers from the same issue (rasingTypeError
instead of returningNotImplemented
). This however won't affect the behaviour witharrow
objects, so I'll address this in another PR.