Skip to content

Commit cbace10

Browse files
committed
MOD: Update databento_dbn to 0.8.3
1 parent 9cbefae commit cbace10

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Changelog
22

3-
### 0.19.0 - TBD
3+
## 0.19.0 - TBD
44

55
#### Enhancements
6-
- Added the `Publisher`, `Venue`, and `Dataset` enums.
6+
- Added the `Publisher`, `Venue`, and `Dataset` enums
77
- Replace null prices with `NaN` when `pretty_px=True` in `DBNStore.to_df()`
8+
- Upgraded `databento-dbn` to 0.8.3
89

910
#### Bug fixes
1011
- Fixed issue where exception messages were displaying JSON encoded data

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The library is fully compatible with the latest distribution of Anaconda 3.8 and
3232
The minimum dependencies as found in the `pyproject.toml` are also listed below:
3333
- python = "^3.8"
3434
- aiohttp = "^3.8.3"
35-
- databento-dbn = "0.8.2"
35+
- databento-dbn = "0.8.3"
3636
- numpy= ">=1.23.5"
3737
- pandas = ">=1.5.3"
3838
- requests = ">=2.24.0"

databento/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.18.1"
1+
__version__ = "0.19.0"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databento"
3-
version = "0.18.1"
3+
version = "0.19.0"
44
description = "Official Python client library for Databento"
55
authors = [
66
"Databento <[email protected]>",
@@ -26,7 +26,7 @@ repository = "https://github.com/databento/databento-python"
2626
[tool.poetry.dependencies]
2727
python = "^3.8"
2828
aiohttp = "^3.8.3"
29-
databento-dbn = "0.8.2"
29+
databento-dbn = "0.8.3"
3030
numpy= ">=1.23.5"
3131
pandas = ">=1.5.3"
3232
requests = ">=2.24.0"

tests/test_historical_data.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ def test_definition_struct() -> None:
106106
fields.remove("record_size")
107107
fields.remove("size_hint")
108108

109-
columns.remove("raw_instrument_id") # TODO: Remove after databento_dbn 0.8.3
110-
111109
difference = fields.symmetric_difference(set(columns))
112110
assert not difference
113111

0 commit comments

Comments
 (0)