Skip to content

Commit cbfd3b6

Browse files
committed
update dependencies
1 parent 39a6207 commit cbfd3b6

File tree

3 files changed

+63
-5
lines changed

3 files changed

+63
-5
lines changed

poetry.lock

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

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
]
2728

2829
[tool.poetry.dependencies]
@@ -39,7 +40,10 @@ numpy = [
3940
{ version = ">=1.18,<2.0", markers = "python_version < \"3.9\"" },
4041
{ version = ">=1.26,<3.0", markers = "python_version >= \"3.9\"" }
4142
]
42-
pyarrow = ">=8.0.0"
43+
pyarrow = [
44+
{ version = ">=8.0.0,<18.0.0", markers = "python_version < \"3.13\"" },
45+
{ version = ">=18.0.0", markers = "python_version >= \"3.13\"" }
46+
]
4347
typing-extensions = "^4.4.0"
4448
packaging = ">=21.1,<25.0"
4549

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,312}
2+
envlist = py{37,38,39,310,311,312,313}
33
isolated_build = True
44

55
[testenv]
@@ -21,7 +21,7 @@ commands =
2121
--dist load --maxschedchunk 2 \
2222
--junitxml=test-reports/junit.xml --log-file=test-reports/logs.txt tests/unit
2323

24-
[testenv:py{37,38,39,310,311}-distributed]
24+
[testenv:py{37,38,39,310,311,312,313}-distributed]
2525
passenv =
2626
AWS_PROFILE
2727
AWS_DEFAULT_REGION

0 commit comments

Comments
 (0)