Skip to content

Commit 0ef67ad

Browse files
committed
Update ray: removed condition for python <3.9, added one for python >=3.13
1 parent 8c545d9 commit 0ef67ad

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ google-auth = { version = ">=2.4.0", optional = true }
6868
pandas = { version = ">=1.0.0,<3.0.0", optional = true }
6969
duckdb = { version = ">=0.5.0,<2.0.0", optional = true }
7070
ray = [
71-
{ version = "==2.10.0", python = "<3.9", optional = true },
72-
{ version = ">=2.10.0,<=2.44.0", python = ">=3.9", optional = true },
71+
{ version = ">=2.10.0,<=2.44.0", python = ">=3.9,<3.13", optional = true },
72+
{ version = ">=2.49.2", python = ">=3.13", optional = true },
7373
]
7474
python-snappy = { version = ">=0.6.0,<1.0.0", optional = true }
7575
thrift = { version = ">=0.13.0,<1.0.0", optional = true }
@@ -356,6 +356,8 @@ filterwarnings = [
356356
"ignore:datetime.datetime.utcnow\\(\\) is deprecated and scheduled for removal in a future version.",
357357
# Latest PySpark version (v3.5.3) throws this error, remove in a future release of PySpark (possibly v4.0.0).
358358
"ignore:is_datetime64tz_dtype is deprecated and will be removed in a future version.",
359+
# Unclosed sqlite3 database warnings introduced in Python 3.13 https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection
360+
"ignore:unclosed database",
359361
]
360362

361363
[tool.black]

0 commit comments

Comments
 (0)