This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
Releases: xhochy/fletcher
Releases · xhochy/fletcher
fletcher 0.7.2
fletcher 0.7.1
- Fix return values for
str
functions withpandas=1.2
andpyarrow=1
. - Ensure that parallel variants of
apply_binary_str
actually parallize.
fletcher 0.7.0
- Add tests for all
str
functions. - Fix tests for
pyarrow=0.17.1
and add CI jobs for0.17.1
and1.0.1
. - Implement a faster take for list arrays.
- Use
utf8_is_*
functions from Apache Arrow if available. - Simplify
factorize
implementation to work for chunked arrays with more or less than a single chunk. - Switch to
pandas.NA
as the user-facing null value - Add convenience function
fletcher.algorithms.string.apply_binary_str
to apply a binary function on two string columns.
fletcher 0.6.1
- Create a shallow copy on
.astype(equal dtype, copy=True)
. - Import
pad_1d
only in olderpandas
versions, otherwise useget_fill_func
- Handle
fr_str.extractall
and similar functions correctly, returning apd.Dataframe
containing accoringfletcher
array types.
fletcher 0.6.0
- Use
binary_contains_exact
if available frompyarrow
instead of our own numba-based implementation. - Provide two more consistent accessors:
.fr_strx
: Call efficient string functions onfletcher
arrays, error if not available..fr_str
: Call string functions onfletcher
andobject
-typed arrays, convert toobject
if nofletcher
function is available.- Add a numba-based implementation for
strip
,slice
, andreplace
. - Support
LargeListArray
as a backing structure for lists. - Implement
isnan
ufunc.
fletcher 0.5.2
Add probot-automerge (#186)
fletcher 0.5.1
Add GH Action for automatic releases (#184) * Add GH Action for automatic releases * Releases are 3.7 only
fletcher 0.5.0
- Implement
FletcherBaseArray.__or__
andFletcherBaseArray.__any__
to supportpandas.Series.replace
.
fletcher 0.4.0
- Forward the
__array__
protocol directly to Arrow - Add naive implementation for
zfill
- Add efficient (Numba-based) implementations for
endswith
,startswith
andcontains