dependabot[bot] opened a new pull request, #6631: URL: https://github.com/apache/opendal/pull/6631
Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) and [pyo3-async-runtimes](https://github.com/PyO3/pyo3-async-runtimes) to permit the latest version. Updates `pyo3` to 0.25.1 <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/main/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>See full diff in <a href="https://github.com/pyo3/pyo3/compare/v0.25.1...v0.25.1">compare view</a></li> </ul> </details> <br /> Updates `pyo3-async-runtimes` to 0.26.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/PyO3/pyo3-async-runtimes/releases">pyo3-async-runtimes's releases</a>.</em></p> <blockquote> <h2>v0.26.0</h2> <h2>What's Changed</h2> <ul> <li>ci: test 3.14, configure trusted publishing by <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in <a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/pull/55">PyO3/pyo3-async-runtimes#55</a></li> <li>Prepare for pyo3 0.26 by <a href="https://github.com/kylebarron"><code>@kylebarron</code></a> in <a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/pull/54">PyO3/pyo3-async-runtimes#54</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/PyO3/pyo3-async-runtimes/compare/v0.25.0...v0.26.0">https://github.com/PyO3/pyo3-async-runtimes/compare/v0.25.0...v0.26.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PyO3/pyo3-async-runtimes/blob/main/CHANGELOG.md">pyo3-async-runtimes's changelog</a>.</em></p> <blockquote> <h2>[0.26.0] - 2025-09-02</h2> <ul> <li>Bump to pyo3 0.26. <a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/pull/54">#54</a></li> </ul> <h2>[0.25.0] - 2025-05-14</h2> <ul> <li>Bump to pyo3 0.25. <a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/pull/41">#41</a></li> </ul> <h2>[0.24.0] - 2025-03-11</h2> <ul> <li>Bump to pyo3 0.24. <a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/pull/34">#34</a></li> </ul> <h2>[0.23.0] - 2024-11-22</h2> <ul> <li>Bump minimum version of <code>pyo3</code> dependency to 0.23. <a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/pull/21">#21</a></li> </ul> <h2><a href="https://github.com/PyO3/pyo3-async-runtimes/tree/0.22.0">0.22.0</a> - 2024-10-28</h2> <ul> <li>Move from <a href="https://github.com/davidhewitt/pyo3-asyncio">the <code>davidhewitt/pyo3-asyncio</code> fork</a> (had been published as <code>pyo3-asyncio-0.21</code>) to <code>pyo3-async-runtimes</code>.</li> <li>Bump minimum version of <code>syn</code> dependency to 2. <a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/pull/12">#12</a></li> </ul> <h2>Older versions</h2> <p>Previous versions were published from <a href="https://github.com/awestlake87/pyo3-asyncio"><code>pyo3-asyncio</code></a>. Consult that library for older changes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyO3/pyo3-async-runtimes/commit/5ce66d1df03cc6418b013efdcfd66bb5c668334a"><code>5ce66d1</code></a> Prepare for pyo3 0.26 (<a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/issues/54">#54</a>)</li> <li><a href="https://github.com/PyO3/pyo3-async-runtimes/commit/5e6c5b7667c63ea374bda93934ac2429cac2ad2c"><code>5e6c5b7</code></a> ci: test 3.14, configure trusted publishing (<a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/issues/55">#55</a>)</li> <li><a href="https://github.com/PyO3/pyo3-async-runtimes/commit/d85ac627985793b31edef66907830af7f0dfdaff"><code>d85ac62</code></a> Fix latest clippy errors (<a href="https://redirect.github.com/PyO3/pyo3-async-runtimes/issues/53">#53</a>)</li> <li>See full diff in <a href="https://github.com/PyO3/pyo3-async-runtimes/compare/v0.25.0...v0.26.0">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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
