Releases: startable/pdtable
Releases · startable/pdtable
v0.0.12 - CI update for pypi release
What's Changed
- Trying to make the CI work again by @guilhermebs in #111
Full Changelog: v0.0.11...v0.0.12
v0.0.11 - support for table origin
Added
- [#106] Support for detailed origin information in table metadata.
- [#106] Support for loading complete input sets.
Changed
- Table origin information has been moved from
TableMetadata
to an aggregate object. - The error type raised by the
fixer
has been changed to integrate withload
framework.
Fixed
- Fix deprecation warning by changing dtype from np.str to str by @jfcorbett in #108
Full Changelog: v0.0.10...v0.0.11
v0.0.10
Changed
write_excel()
parameterstyle
renamed tostyles
.- Optionally specify custom styles in
write_excel()
by passing to parameterstyles
a JSON-like structure of dicts. - When
write_excel()
parameterstyles
is truthy, transposed tables' column units and values are horizontally centered by default. This default is overridden by any horizontal alignment specified explicitly instyles
. write_excel()
parameternum_blank_rows_between_tables
renamed tosep_lines
for conciseness.
Fixed
- Replaced the one remaining reference to
numpy.bool
(now deprecated from numpy) with its designated successor, plain ol' built-inbool
.
v0.0.9
v0.0.8
v0.0.7
Support empty tables
[0.0.6] - 2021-01-06
Fixed
- #87 Parser fails on tables with zero rows. (Edge case not explicitly ruled out in the StarTable specification.)
v0.0.5
Added
- For convenience,
Column
proxy is is now iterable. For example,list(table["some_col"])
now works, whereas previously you had to access the backingTableDataFrame
aslist(table.df["some_col"])
. Saving 3 chars FTW. - CI pipeline now auto releases to PyPI on pushed tags starting with a "v".
Fixed
- #82:
read_excel()
fails on formulas
Dummy release to try out new CI pipeline
This is a dummy release to confirm that the new CI pipeline works as intended. (Release 0.0.4a failed due to forgetting to bump the version number in __init__.py
.
CI pipeline expanded to do build and release
This is a dummy release to confirm that the new CI pipeline works as intended.
CI pipeline expanded to auto build and release on tags starting with a "v" when pushed.