Skip to content

Commit 5a32b1e

Browse files
committed
MOD: Upgrade databento_dbn to 0.27.0
1 parent e40893a commit 5a32b1e

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@
99
- Added export of `StatusAction` enum from `databento_dbn` to the root `databento` package
1010
- Added export of `StatusReason` enum from `databento_dbn` to the root `databento` package
1111
- Added export of `TradingEvent` enum from `databento_dbn` to the root `databento` package
12-
- Removed upper bound for supported `python` versions; the constraint is now `^3.9`
1312
- Added new dataset `EQUS.MINI` and new publishers `EQUS.MINI.EQUS`, `XNYS.TRADES.EQUS`
13+
- Removed upper bound for supported `python` versions; the constraint is now `^3.9`
14+
- Upgraded `databento-dbn` to 0.27.0
15+
- Fixed export of `InstrumentDefMsgV3` to Python
1416

1517
#### Bug fixes
1618
- Fixed an issue where sending a `KeyboardInterrupt` during iteration of the `Live` client could block execution waiting for the connection to close

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.9 and
3232
The minimum dependencies as found in the `pyproject.toml` are also listed below:
3333
- python = "^3.9"
3434
- aiohttp = "^3.8.3"
35-
- databento-dbn = "0.25.0"
35+
- databento-dbn = "0.27.0"
3636
- numpy= ">=1.23.5"
3737
- pandas = ">=1.5.3"
3838
- pip-system-certs = ">=4.0" (Windows only)

databento/common/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
databento_dbn.ImbalanceMsg,
2222
databento_dbn.InstrumentDefMsg,
2323
databento_dbn.InstrumentDefMsgV1,
24+
databento_dbn.InstrumentDefMsgV3,
2425
databento_dbn.StatMsg,
2526
databento_dbn.StatusMsg,
2627
databento_dbn.SymbolMappingMsg,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ aiohttp = [
3232
{version = "^3.8.3", python = "<3.12"},
3333
{version = "^3.9.0", python = "^3.12"}
3434
]
35-
databento-dbn = "0.25.0"
35+
databento-dbn = "0.27.0"
3636
numpy = [
3737
{version = ">=1.23.5", python = "<3.12"},
3838
{version = ">=1.26.0", python = "^3.12"}

0 commit comments

Comments
 (0)