Skip to content

Commit 3d1ab19

Browse files
committed
BLD: Remove Python version upper-bound
1 parent aa03a85 commit 3d1ab19

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

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

3-
## 0.47.1 - TBD
3+
## 0.48.0 - TBD
44

55
#### Enhancements
66
- Added export of `StatusAction` enum from `databento_dbn` to the root `databento` package
77
- Added export of `StatusReason` enum from `databento_dbn` to the root `databento` package
88
- Added export of `TradingEvent` enum from `databento_dbn` to the root `databento` package
9+
- Removed upper bound for supported `python` versions; the constraint is now `^3.9`
910

1011
## 0.47.0 - 2024-12-17
1112

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# databento-python
22

33
[![test](https://github.com/databento/databento-python/actions/workflows/test.yml/badge.svg?branch=dev)](https://github.com/databento/databento-python/actions/workflows/test.yml)
4-
![python](https://img.shields.io/badge/python-3.9+-blue.svg)
4+
![python](https://img.shields.io/pypi/pyversions/databento.svg)
55
[![pypi-version](https://img.shields.io/pypi/v/databento)](https://pypi.org/project/databento)
66
[![license](https://img.shields.io/github/license/databento/databento-python?color=blue)](./LICENSE)
77
[![code-style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repository = "https://github.com/databento/databento-python"
2727
"Bug Tracker" = "https://github.com/databento/databento-python/issues"
2828

2929
[tool.poetry.dependencies]
30-
python = ">=3.9,<3.14"
30+
python = "^3.9"
3131
aiohttp = [
3232
{version = "^3.8.3", python = "<3.12"},
3333
{version = "^3.9.0", python = "^3.12"}

0 commit comments

Comments
 (0)