Skip to content

Commit c43e752

Browse files
committed
MOD: Upgrade databento_dbn to 0.20.0
1 parent 3e9a200 commit c43e752

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

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

3-
## 0.38.1 - TBD
3+
## 0.39.0 - TBD
44

55
#### Enhancements
66
- Added new publisher value for `DBEQ.SUMMARY`
7+
- Upgraded `databento-dbn` to 0.20.0
78

89
## 0.38.0 - 2024-07-23
910

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.38.0"
3+
version = "0.39.0"
44
description = "Official Python client library for Databento"
55
authors = [
66
"Databento <[email protected]>",
@@ -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.19.1"
35+
databento-dbn = "0.20.0"
3636
numpy = [
3737
{version = ">=1.23.5", python = "<3.12"},
3838
{version = "^1.26.0", python = "^3.12"}

tests/test_live_client_reconnect.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ async def test_reconnect_before_start(
9191

9292
await mock_live_server.wait_for_message_of_type(AuthenticationRequest)
9393

94+
live_client.stop()
95+
9496
# Assert
9597
with pytest.raises(asyncio.TimeoutError):
9698
await mock_live_server.wait_for_message_of_type(SessionStart)
@@ -166,6 +168,8 @@ async def test_reconnect_subscriptions(
166168
request = await mock_live_server.wait_for_message_of_type(SubscriptionRequest)
167169
reconnect_subscriptions.append(request)
168170

171+
live_client.stop()
172+
169173
# Assert
170174
for i, symbol in enumerate(symbols):
171175
sub = reconnect_subscriptions[i]

0 commit comments

Comments
 (0)