kosiew commented on code in PR #1287:
URL:
https://github.com/apache/datafusion-python/pull/1287#discussion_r2454443004
##########
pyproject.toml:
##########
@@ -129,25 +129,33 @@ extend-allowed-calls = ["lit", "datafusion.lit"]
]
"examples/*" = ["D", "W505", "E501", "T201", "S101"]
"dev/*" = ["D", "E", "T", "S", "PLR", "C", "SIM", "UP", "EXE", "N817"]
-"benchmarks/*" = ["D", "F", "T", "BLE", "FURB", "PLR", "E", "TD", "TRY", "S",
"SIM", "EXE", "UP"]
+"benchmarks/*" = [
+ "D",
+ "F",
+ "T",
+ "BLE",
+ "FURB",
+ "PLR",
+ "E",
+ "TD",
+ "TRY",
+ "S",
+ "SIM",
+ "EXE",
+ "UP",
+]
"docs/*" = ["D"]
[tool.codespell]
-skip = [
- "./target",
- "uv.lock",
- "./python/tests/test_functions.py"
-]
+skip = ["./target", "uv.lock", "./python/tests/test_functions.py"]
count = true
-ignore-words-list = [
- "ans",
- "IST"
-]
+ignore-words-list = ["ans", "IST"]
[dependency-groups]
dev = [
"maturin>=1.8.1",
"numpy>1.25.0",
+ "pyarrow>=19.0.0",
Review Comment:
This is the change added to ensure pa.uuid() is available for test_udf.py.
https://arrow.apache.org/docs/19.0/python/generated/pyarrow.uuid.html is the
lowest version which contains pyarrow.uuid.
The rest are VSCode automatic formatting.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]