dependabot[bot] opened a new pull request, #7655: URL: https://github.com/apache/arrow-rs/pull/7655
Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pyo3/pyo3/releases">pyo3's releases</a>.</em></p> <blockquote> <h2>PyO3 0.25.1</h2> <p>This release adds testing for arm64 Windows, and fixes a bug with Python 3.14 support on 32-bit systems.</p> <p>This release also adds a <code>chrono-local</code> feature to enable support for <code>chrono::Local</code> timezone (this was previously available in PyO3 0.24 but would convert the local timezone to a fixed offset, which did not round-trip well).</p> <p>There are a few other fixes, mostly correcting FFI definitions and improving compiler errors when writing <code>async</code> code without the <code>experimental-async</code> feature enabled.</p> <p>Thank you to the following contributors for the improvements:</p> <p><a href="https://github.com/bschoenmaeckers"><code>@bschoenmaeckers</code></a> <a href="https://github.com/Cheukting"><code>@Cheukting</code></a> <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> <a href="https://github.com/decathorpe"><code>@decathorpe</code></a> <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] <a href="https://github.com/Icxolu"><code>@Icxolu</code></a> <a href="https://github.com/jessekrubin"><code>@jessekrubin</code></a> <a href="https://github.com/musicinmybrain"><code>@musicinmybrain</code></a> <a href="https://github.com/ngoldbaum"><code>@ngoldbaum</code></a> <a href="https://github.com/timfel"><code>@timfel</code></a> <a href="https://github.com/tonybaloney"><code>@tonybaloney</code></a> <a href="https://github.com/Tpt"><code>@Tpt</code></a> <a href="https://github.com/yogevm15"><code>@yogevm15</code></a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PyO3/pyo3/blob/v0.25.1/CHANGELOG.md">pyo3's changelog</a>.</em></p> <blockquote> <h2>[0.25.1] - 2025-06-12</h2> <h3>Packaging</h3> <ul> <li>Add support for Windows on ARM64. <a href="https://redirect.github.com/PyO3/pyo3/pull/5145">#5145</a></li> <li>Add <code>chrono-local</code> feature for optional conversions for chrono's <code>Local</code> timezone & <code>DateTime<Local></code> instances. <a href="https://redirect.github.com/PyO3/pyo3/pull/5174">#5174</a></li> </ul> <h3>Added</h3> <ul> <li>Add FFI definition <code>PyBytes_AS_STRING</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5121">#5121</a></li> <li>Add support for module associated consts introspection. <a href="https://redirect.github.com/PyO3/pyo3/pull/5150">#5150</a></li> </ul> <h3>Changed</h3> <ul> <li>Enable "vectorcall" FFI definitions on GraalPy. <a href="https://redirect.github.com/PyO3/pyo3/pull/5121">#5121</a></li> <li>Use <code>Py_Is</code> function on GraalPy <a href="https://redirect.github.com/PyO3/pyo3/pull/5121">#5121</a></li> </ul> <h3>Fixed</h3> <ul> <li>Report a better compile error for <code>async</code> declarations when not using <code>experimental-async</code> feature. <a href="https://redirect.github.com/PyO3/pyo3/pull/5156">#5156</a></li> <li>Fix implementation of <code>FromPyObject</code> for <code>uuid::Uuid</code> on big-endian architectures. <a href="https://redirect.github.com/PyO3/pyo3/pull/5161">#5161</a></li> <li>Fix segmentation faults on 32-bit x86 with Python 3.14. <a href="https://redirect.github.com/PyO3/pyo3/pull/5180">#5180</a></li> </ul> <h2>[0.25.0] - 2025-05-14</h2> <h3>Packaging</h3> <ul> <li>Support Python 3.14.0b1. <a href="https://redirect.github.com/PyO3/pyo3/pull/4811">#4811</a></li> <li>Bump supported GraalPy version to 24.2. <a href="https://redirect.github.com/PyO3/pyo3/pull/5116">#5116</a></li> <li>Add optional <code>bigdecimal</code> dependency to add conversions for <code>bigdecimal::BigDecimal</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5011">#5011</a></li> <li>Add optional <code>time</code> dependency to add conversions for <code>time</code> types. <a href="https://redirect.github.com/PyO3/pyo3/pull/5057">#5057</a></li> <li>Remove <code>cfg-if</code> dependency. <a href="https://redirect.github.com/PyO3/pyo3/pull/5110">#5110</a></li> <li>Add optional <code>ordered_float</code> dependency to add conversions for <code>ordered_float::NotNan</code> and <code>ordered_float::OrderedFloat</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5114">#5114</a></li> </ul> <h3>Added</h3> <ul> <li>Add initial type stub generation to the <code>experimental-inspect</code> feature. <a href="https://redirect.github.com/PyO3/pyo3/pull/3977">#3977</a></li> <li>Add <code>#[pyclass(generic)]</code> option to support runtime generic typing. <a href="https://redirect.github.com/PyO3/pyo3/pull/4926">#4926</a></li> <li>Implement <code>OnceExt</code> & <code>MutexExt</code> for <code>parking_lot</code> & <code>lock_api</code>. Use the new extension traits by enabling the <code>arc_lock</code>, <code>lock_api</code>, or <code>parking_lot</code> cargo features. <a href="https://redirect.github.com/PyO3/pyo3/pull/5044">#5044</a></li> <li>Implement <code>From</code>/<code>Into</code> for <code>Borrowed<T></code> -> <code>Py<T></code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5054">#5054</a></li> <li>Add <code>PyTzInfo</code> constructors. <a href="https://redirect.github.com/PyO3/pyo3/pull/5055">#5055</a></li> <li>Add FFI definition <code>PY_INVALID_STACK_EFFECT</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5064">#5064</a></li> <li>Implement <code>AsRef<Py<PyAny>></code> for <code>Py<T></code>, <code>Bound<T></code> and <code>Borrowed<T></code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5071">#5071</a></li> <li>Add FFI definition <code>PyModule_Add</code> and <code>compat::PyModule_Add</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5085">#5085</a></li> <li>Add FFI definitions <code>Py_HashBuffer</code>, <code>Py_HashPointer</code>, and <code>PyObject_GenericHash</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5086">#5086</a></li> <li>Support <code>#[pymodule_export]</code> on <code>const</code> items in declarative modules. <a href="https://redirect.github.com/PyO3/pyo3/pull/5096">#5096</a></li> <li>Add <code>#[pyclass(immutable_type)]</code> option (on Python 3.14+ with <code>abi3</code>, or 3.10+ otherwise) for immutable type objects. <a href="https://redirect.github.com/PyO3/pyo3/pull/5101">#5101</a></li> <li>Support <code>#[pyo3(rename_all)]</code> support on <code>#[derive(IntoPyObject)]</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5112">#5112</a></li> <li>Add <code>PyRange</code> wrapper. <a href="https://redirect.github.com/PyO3/pyo3/pull/5117">#5117</a></li> </ul> <h3>Changed</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyO3/pyo3/commit/2aacae6cef1bc806a642d3018bb66a307a7850bd"><code>2aacae6</code></a> release: 0.25.1</li> <li><a href="https://github.com/PyO3/pyo3/commit/a4c35cee3006d40c7c22fee50dc03125fafe82fc"><code>a4c35ce</code></a> Make PyObjectObRefcnt.refcnt_and_flags 64-bit-only (<a href="https://redirect.github.com/pyo3/pyo3/issues/5180">#5180</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/0ba8f31be6afaaf6d63af717aa0192bfdc326534"><code>0ba8f31</code></a> docs: add Kyle Barron libraries/packages to README.md (<a href="https://redirect.github.com/pyo3/pyo3/issues/5172">#5172</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/eb3fac901dc85a101e534a6cae3df50696e51f07"><code>eb3fac9</code></a> fix: typos in guide/docs (<a href="https://redirect.github.com/pyo3/pyo3/issues/5182">#5182</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/7601c0cc1c2465e559602cbd144921f202e451e1"><code>7601c0c</code></a> ci: fixes 2025-06-06 (<a href="https://redirect.github.com/pyo3/pyo3/issues/5186">#5186</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/2829027f9c8a9b698f86bfe78937c38bc8d3b0ca"><code>2829027</code></a> Add conversions for chrono's <code>Local</code> timezone (<a href="https://redirect.github.com/pyo3/pyo3/issues/5174">#5174</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/5db48718bdd5e7f6611db65298cdb83e53493a7c"><code>5db4871</code></a> Remove unnecessary warning filter in pytests (<a href="https://redirect.github.com/pyo3/pyo3/issues/5165">#5165</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/008efe221d2435763bab9e6e334516ac643d8bca"><code>008efe2</code></a> conversions: fix FromPyObject impl for uuid::Uuid for big-endian (<a href="https://redirect.github.com/pyo3/pyo3/issues/5161">#5161</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/a27ccd7b4ad73ca99ba14c27c8ace74fabda2ee5"><code>a27ccd7</code></a> Updates to better support ormsgpack on GraalPy. (<a href="https://redirect.github.com/pyo3/pyo3/issues/5121">#5121</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/2c13c1c0a78586fd32d84c5cbed7e45b119f9d04"><code>2c13c1c</code></a> Catching Invalid Asyncs (<a href="https://redirect.github.com/pyo3/pyo3/issues/5156">#5156</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pyo3/pyo3/compare/v0.24.1...v0.25.1">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org