Skip to content

Commit 6d8c93a

Browse files
committed
Add Python 3.13
1 parent 9de2be3 commit 6d8c93a

File tree

3 files changed

+50
-42
lines changed

3 files changed

+50
-42
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ jobs:
123123
- "3.10"
124124
- "3.11"
125125
- "3.12"
126+
- "3.13"
126127
if: |
127128
always() && !cancelled() &&
128129
!contains(needs.*.result, 'failure') &&

poetry.lock

Lines changed: 47 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2425
]
2526

2627
[tool.poetry.dependencies]
@@ -43,7 +44,7 @@ numpy = [
4344
{ version = "^1.24.2", optional = true, python = ">=3.9,<3.12" },
4445
{ version = "^1.26.2", optional = true, python = ">=3.12" },
4546
]
46-
pyarrow = { version = "^14", optional = true }
47+
pyarrow = { version = ">=14,<19", optional = true }
4748
rich = { version = "^13", optional = true }
4849
toml = { version = "^0.10", optional = true }
4950
typer = { version = "^0.12.3", optional = true }

0 commit comments

Comments
 (0)