Skip to content

Commit 49664bc

Browse files
committed
ADD: Add support for Python 3.14
1 parent c00e308 commit 49664bc

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ["3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1414
name: build - Python ${{ matrix.python-version }} (${{ matrix.os }})
1515
runs-on: ${{ matrix.os }}
1616

CHANGELOG.md

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

3+
## 0.68.0 - TBD
4+
5+
This release adds support for Python 3.14.
6+
7+
#### Enhancements
8+
- Added support for Python 3.14
9+
310
## 0.67.0 - 2025-12-02
411

512
#### Enhancements
@@ -351,7 +358,7 @@ was preventing `ts_out` from being correctly decoded in the Python DBNDecoder
351358

352359
## 0.45.0 - 2024-11-12
353360

354-
This release adds support for Python v3.13.
361+
This release adds support for Python 3.13.
355362

356363
#### Enhancements
357364
- Added support for Python 3.13
@@ -675,7 +682,7 @@ This release adds support for transcoding DBN data into Apache parquet.
675682

676683
## 0.24.0 - 2023-11-23
677684

678-
This release adds support for DBN v2 as well as Python v3.12.
685+
This release adds support for DBN v2 as well as Python 3.12.
679686

680687
DBN v2 delivers improvements to the `Metadata` header symbology, new `stype_in` and `stype_out` fields for `SymbolMappingMsg`, and extends the symbol field length for `SymbolMappingMsg` and `InstrumentDefMsg`. The entire change notes are available [here](https://github.com/databento/dbn/releases/tag/v0.14.0). Users who wish to convert DBN v1 files to v2 can use the `dbn-cli` tool available in the [databento-dbn](https://github.com/databento/dbn/) crate. On a future date, the Databento live and historical APIs will stop serving DBN v1.
681688

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ classifiers = [
4242
]
4343

4444
[tool.poetry.dependencies]
45-
python = ">=3.10,<3.14"
45+
python = ">=3.10,<3.15"
4646

4747
[tool.poetry.group.dev.dependencies]
4848
black = "^23.9.1"

0 commit comments

Comments
 (0)