Closed tswast closed 2 years ago
I can help with the failing tests here. We recently removed the difference in compilation between ibis.ifelse and ibis.where. Both are now using the ops.Where operation which compiles to an if call.
ibis.ifelse
ibis.where
ops.Where
if
Thanks for the help @cpcloud !
@tswast I think this PR is ready for review if you don't mind!
It sort of ballooned into a bit of a CI cleanup due to having to futz with poetry-dynamic-versioning.
I can help with the failing tests here. We recently removed the difference in compilation between
ibis.ifelse
andibis.where
. Both are now using theops.Where
operation which compiles to anif
call.