Skip to content

Commit 13c7460

Browse files
committed
DEL: Remove unused delivery variants
1 parent c759261 commit 13c7460

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
#### Enhancements
66
- Added `parquet_schema` option to `DBNStore.to_parquet()` for overriding the pyarrow schema.
77

8+
#### Bug fixes
9+
- Removed unused `S3` and `Disk` variants from `Delivery` enum
10+
811
## 0.59.0 - 2025-07-15
912

1013
#### Enhancements

databento/common/enums.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,6 @@ class Delivery(StringyMixin, str, Enum):
157157
"""
158158

159159
DOWNLOAD = "download"
160-
S3 = "s3"
161-
DISK = "disk"
162160

163161

164162
@unique

databento/historical/api/batch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,9 @@ def submit_job(
126126
split_size : int, optional
127127
The maximum size (bytes) of each batched data file before being split.
128128
Must be an integer between 1e9 and 10e9 inclusive (1GB - 10GB).
129-
delivery : Delivery or str {'download', 's3', 'disk'}, default 'download'
129+
delivery : Delivery or str {'download'}, default 'download'
130130
The delivery mechanism for the processed batched data files.
131+
Only 'download' is supported at this time.
131132
stype_in : SType or str, default 'raw_symbol'
132133
The input symbology type to resolve from.
133134
stype_out : SType or str, default 'instrument_id'

databento/live/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class DatabentoLiveProtocol(asyncio.BufferedProtocol):
5555
dataset : Dataset or str
5656
The dataset for authentication.
5757
ts_out : bool, default False
58-
Flag for requesting `ts_out` to be appending to all records in the session.
58+
Flag for requesting `ts_out` to be appended to all records in the session.
5959
heartbeat_interval_s: int, optional
6060
The interval in seconds at which the gateway will send heartbeat records if no
6161
other data records are sent.

0 commit comments

Comments
 (0)