We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8392fc commit d98c128Copy full SHA for d98c128
noxfile.py
@@ -199,7 +199,10 @@ def prerelease(session, tests_path):
199
"--prefer-binary",
200
"--pre",
201
"--upgrade",
202
- "pyarrow",
+ # Limit pyarrow to versions prior to 20.0.0.dev19 to prevent a RuntimeWarning
203
+ # during import. This workaround can be removed once the underlying issue
204
+ # in pyarrow is resolved (see: https://github.com/apache/arrow/issues/45380).
205
+ "pyarrow<=20.0.0.dev18",
206
)
207
# Avoid pandas==2.2.0rc0 as this version causes PyArrow to fail. Once newer
208
# prerelease comes out, this constraint can be removed. See
0 commit comments