Skip to content

Commit 035aa96

Browse files
committed
MOD: Upgrade databento-dbn to 0.69.0
1 parent b6c1459 commit 035aa96

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
#### Enhancements
66
- Added `UNSUBSCRIBE_ACK` to the `SystemCode` enum for acknowledging unsubscribe requests
7+
- Upgraded `databento-dbn` to 0.69.0
8+
- Fixed incorrect count in DBN metadata causing decoding to read into the start of
9+
records
710

811
#### Bug fixes
912
- Fixed an issue where `InstrumentMap.clear()` didn't clear the LRU cache for `InstrumentMap.resolve()` (credit: @Tomperez98)

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 distributions of Anaconda 2023.x and above.
3232
The minimum dependencies as found in the `pyproject.toml` are also listed below:
3333
- python = "^3.10"
3434
- aiohttp = "^3.8.3"
35-
- databento-dbn = "~0.68.0"
35+
- databento-dbn = "~0.69.0"
3636
- numpy = ">=1.23.5"
3737
- pandas = ">=1.5.3"
3838
- pip-system-certs = ">=4.0" (Windows only)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dynamic = [ "classifiers" ]
1010
dependencies = [
1111
"aiohttp>=3.8.3,<4.0.0; python_version < '3.12'",
1212
"aiohttp>=3.9.0,<4.0.0; python_version >= '3.12'",
13-
"databento-dbn~=0.68.0",
13+
"databento-dbn~=0.69.0",
1414
"numpy>=1.23.5; python_version < '3.12'",
1515
"numpy>=1.26.0; python_version >= '3.12'",
1616
"pandas>=1.5.3,<4.0.0",

tests/mockliveserver/fixture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ async def wait_for_message_of_type(
202202
partial = ""
203203
while self._process.returncode is None:
204204
if loop.time() > deadline:
205-
raise TimeoutError(
205+
raise asyncio.TimeoutError(
206206
f"timed out waiting for message of type {message_type.__name__}",
207207
)
208208
line = partial + self._echo_fd.readline()

0 commit comments

Comments
 (0)