Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- MacOs-latest
- Windows-latest
py:
- "3.14"
- "3.13"
- "3.12"
- "3.11"
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name = "textual-fastdatatable"
version = "0.13.0"
requires-python = ">=3.9,<3.14"
requires-python = ">=3.9"
description = "A performance-focused reimplementation of Textual's DataTable widget, with a pluggable data storage backend."
authors = [
{ name = "Ted Conbeer", email = "[email protected]" }
Expand All @@ -12,14 +12,17 @@ readme = "README.md"
dependencies = [
"textual>=0.89.1",
"tzdata>=2023; sys_platform == 'win32'", # arrow timestamptz support on windows
"pyarrow>=18.1.0,<22",

# wheel pins: these packages don't build wheels for all Pythons
"numpy>=2.0.0,<2.1.0; python_version < '3.10'",
"numpy>=2.1.0,<2.3.0; python_version >= '3.10'",
"numpy>=2.1.0,<2.3.0; python_version >= '3.10' and python_version < '3.14'",
"numpy>=2.3.0; python_version >= '3.14'",

"pandas>=2.2.1,<3; python_version < '3.13'",
"pandas>=2.2.3,<3; python_version >= '3.13'",

"pyarrow>=18.1.0,<22; python_version < '3.14'",
"pyarrow>=22.0.0; python_version >= '3.14'",
]


Expand All @@ -44,7 +47,6 @@ test = [
"pytest>=7.3.1,<9.0.0",
"pytest-asyncio==0.21.0",
"pytest-textual-snapshot==0.4.0",
"pyarrow==18.1.0",
"polars==1.34.0",
]

Expand Down
Loading