File tree Expand file tree Collapse file tree 7 files changed +11
-5
lines changed
Expand file tree Collapse file tree 7 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 22
33## 0.43.0 - TBD
44
5+ #### Enhancements
6+ - Upgraded ` databento-dbn ` to 0.22.0
7+
58#### Breaking changes
69- Removed support for Python 3.8 due to end of life
710
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ The library is fully compatible with the latest distribution of Anaconda 3.9 and
3232The 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.20.1 "
35+ - databento-dbn = "0.22.0 "
3636- numpy= ">=1.23.5"
3737- pandas = ">=1.5.3"
3838- pip-system-certs = ">=4.0" (Windows only)
Original file line number Diff line number Diff line change 33import numpy as np
44from databento_dbn import BBOMsg
55from databento_dbn import CBBOMsg
6+ from databento_dbn import CMBP1Msg
67from databento_dbn import ImbalanceMsg
78from databento_dbn import InstrumentDefMsg
89from databento_dbn import InstrumentDefMsgV1
4243 Schema .STATUS : StatusMsg ,
4344 Schema .TBBO : MBP1Msg ,
4445 Schema .TRADES : TradeMsg ,
45- Schema .CBBO : CBBOMsg ,
46+ Schema .CMBP_1 : CMBP1Msg ,
4647 Schema .CBBO_1S : CBBOMsg ,
4748 Schema .CBBO_1M : CBBOMsg ,
4849 Schema .TCBBO : CBBOMsg ,
6465 Schema .STATUS : StatusMsg ,
6566 Schema .TBBO : MBP1Msg ,
6667 Schema .TRADES : TradeMsg ,
67- Schema .CBBO : CBBOMsg ,
68+ Schema .CMBP_1 : CMBP1Msg ,
6869 Schema .CBBO_1S : CBBOMsg ,
6970 Schema .CBBO_1M : CBBOMsg ,
7071 Schema .TCBBO : CBBOMsg ,
Original file line number Diff line number Diff line change 1212DBNRecord = Union [
1313 databento_dbn .BBOMsg ,
1414 databento_dbn .CBBOMsg ,
15+ databento_dbn .CMBP1Msg ,
1516 databento_dbn .MBOMsg ,
1617 databento_dbn .MBP1Msg ,
1718 databento_dbn .MBP10Msg ,
Original file line number Diff line number Diff 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.20.1 "
35+ databento-dbn = " 0.22.0 "
3636numpy = [
3737 {version = " >=1.23.5" , python = " <3.12" },
3838 {version = " ^1.26.0" , python = " ^3.12" }
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ def create_symbol_mapping_message(
151151 SymbolMappingMsg
152152
153153 """
154- return SymbolMappingMsg ( # type: ignore [call-arg]
154+ return SymbolMappingMsg (
155155 publisher_id = publisher_id ,
156156 instrument_id = instrument_id ,
157157 ts_event = ts_event ,
Original file line number Diff line number Diff line change @@ -1520,6 +1520,7 @@ async def test_live_stream_with_reuse(
15201520 "cbbo-1s" ,
15211521 "cbbo-1m" ,
15221522 "tcbbo" ,
1523+ "cmbp-1" ,
15231524 "bbo-1s" ,
15241525 "bbo-1m" ,
15251526 ):
You can’t perform that action at this time.
0 commit comments