diff --git a/CHANGELOG.md b/CHANGELOG.md index bbbb3fb..b221e94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ #### Enhancements - Added `price_type` argument for `DBNStore.to_df` to specify if price fields should be `fixed`, `float` or `decimal.Decimal` -- Upgraded `databento-dbn` to 0.12.0 +- Upgraded `databento-dbn` to 0.13.0 #### Breaking Changes - Changed outputs of `DBNStore.to_csv` and `DBNStore.to_json` to match the encoding formats from the Databento API diff --git a/README.md b/README.md index df496a3..c082e32 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ The library is fully compatible with the latest distribution of Anaconda 3.8 and The minimum dependencies as found in the `pyproject.toml` are also listed below: - python = "^3.8" - aiohttp = "^3.8.3" -- databento-dbn = "0.12.0" +- databento-dbn = "0.13.0" - numpy= ">=1.23.5" - pandas = ">=1.5.3" - requests = ">=2.24.0" diff --git a/databento/common/dbnstore.py b/databento/common/dbnstore.py index eba994b..f7fef5e 100644 --- a/databento/common/dbnstore.py +++ b/databento/common/dbnstore.py @@ -1129,7 +1129,6 @@ def _transcode( pretty_px=pretty_px, pretty_ts=pretty_ts, has_metadata=True, - input_compression=Compression.NONE, symbol_map=symbol_map, # type: ignore [arg-type] schema=schema, ) diff --git a/pyproject.toml b/pyproject.toml index d975959..7d85ebf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ repository = "https://github.com/databento/databento-python" [tool.poetry.dependencies] python = "^3.8" aiohttp = "^3.8.3" -databento-dbn = "0.12.0" +databento-dbn = "0.13.0" numpy = ">=1.23.5" pandas = ">=1.5.3" requests = ">=2.24.0"