Skip to content

Commit fdc5e37

Browse files
committed
ADD: Add support for Python 3.14
1 parent be0c266 commit fdc5e37

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
python-version: ["3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1616
name: build - Python ${{ matrix.python-version }} (x86_64 ${{ matrix.os }})
1717
runs-on: ${{ matrix.os }}
1818

@@ -63,7 +63,7 @@ jobs:
6363
strategy:
6464
fail-fast: false
6565
matrix:
66-
python-version: ["3.10", "3.11", "3.12", "3.13"]
66+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
6767
name: build - Python ${{ matrix.python-version }} (aarch64 linux)
6868
runs-on: ubuntu-latest
6969

@@ -110,7 +110,7 @@ jobs:
110110
strategy:
111111
fail-fast: false
112112
matrix:
113-
python-version: ["3.10", "3.11", "3.12", "3.13"]
113+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
114114
name: build - Python ${{ matrix.python-version }} (macOS)
115115
runs-on: macos-latest
116116

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
fail-fast: false
4949
matrix:
50-
python-version: ["3.10", "3.11", "3.12", "3.13"]
50+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
5151
runs-on: macos-latest
5252
steps:
5353
- name: Checkout repository
@@ -94,7 +94,7 @@ jobs:
9494
strategy:
9595
fail-fast: false
9696
matrix:
97-
python-version: ["3.10", "3.11", "3.12", "3.13"]
97+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
9898
runs-on: windows-latest
9999
steps:
100100
- name: Checkout repository
@@ -137,7 +137,7 @@ jobs:
137137
strategy:
138138
fail-fast: false
139139
matrix:
140-
python-version: ["3.10", "3.11", "3.12", "3.13"]
140+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
141141
target: [x86_64, aarch64]
142142
runs-on: ubuntu-latest
143143
steps:
@@ -181,7 +181,7 @@ jobs:
181181
strategy:
182182
fail-fast: false
183183
matrix:
184-
python-version: ["3.10", "3.11", "3.12", "3.13"]
184+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
185185
target: [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl]
186186
runs-on: ubuntu-latest
187187
steps:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
#### Enhancements
66
- Added new venue, dataset, and publisher for Cboe Futures Exchange (`XCBF.PITCH`)
7+
- Added support for Python 3.14 to `databento_dbn`
78

89
## 0.44.0 - 2025-11-18
910

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Repository = "https://github.com/databento/dbn"
2222
requires-poetry = ">=2.0"
2323

2424
[tool.poetry.dependencies]
25-
python = ">=3.10,<3.14"
25+
python = ">=3.10,<3.15"
2626

2727
[tool.poetry.group.dev.dependencies]
2828
maturin = ">=1.0"

0 commit comments

Comments
 (0)