dependabot[bot] opened a new pull request, #8683: URL: https://github.com/apache/arrow-rs/pull/8683
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.27.1</h2> <p>This release fixes a clippy lint regression in PyO3 0.27.0, and exposes the <code>PySendResult</code> type (the return value from <code>Bound<PyIterator>::send</code>).</p> <p>Thank you to the following contributors for the improvements:</p> <p><a href="https://github.com/alex"><code>@alex</code></a> <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> <a href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> <a href="https://github.com/tpoliaw"><code>@tpoliaw</code></a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PyO3/pyo3/blob/v0.27.1/CHANGELOG.md">pyo3's changelog</a>.</em></p> <blockquote> <h2>[0.27.1] - 2025-10-21</h2> <h3>Fixed</h3> <ul> <li>Fix <code>clippy:declare_interior_mutable_const</code> warning from <code>#[pyfunction]</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5538">#5538</a></li> <li>Expose <code>pyo3::types::PySendResult</code> in public API. <a href="https://redirect.github.com/PyO3/pyo3/pull/5539">#5539</a></li> </ul> <h2>[0.27.0] - 2025-10-19</h2> <h3>Packaging</h3> <ul> <li>Extend range of supported versions of <code>hashbrown</code> optional dependency to include version 0.16. <a href="https://redirect.github.com/PyO3/pyo3/pull/5428">#5428</a></li> <li>Bump optional <code>num-bigint</code> dependency minimum version to 0.4.4. <a href="https://redirect.github.com/PyO3/pyo3/pull/5471">#5471</a></li> <li>Test against Python 3.14 final release. <a href="https://redirect.github.com/PyO3/pyo3/pull/5499">#5499</a></li> <li>Drop support for PyPy 3.9 and 3.10. <a href="https://redirect.github.com/PyO3/pyo3/pull/5516">#5516</a></li> <li>Provide a better error message when building an outdated PyO3 for a too-new Python version. <a href="https://redirect.github.com/PyO3/pyo3/pull/5519">#5519</a></li> </ul> <h3>Added</h3> <ul> <li>Add <code>FromPyObjectOwned</code> as convenient trait bound for <code>FromPyObject</code> when the data is not borrowed from Python. <a href="https://redirect.github.com/PyO3/pyo3/pull/4390">#4390</a></li> <li>Add <code>Borrowed::extract</code>, same as <code>PyAnyMethods::extract</code>, but does not restrict the lifetime by deref. <a href="https://redirect.github.com/PyO3/pyo3/pull/4390">#4390</a></li> <li><code>experimental-inspect</code>: basic support for <code>#[derive(IntoPyObject)]</code> (no struct fields support yet). <a href="https://redirect.github.com/PyO3/pyo3/pull/5365">#5365</a></li> <li><code>experimental-inspect</code>: support <code>#[pyo3(get, set)]</code> and <code>#[pyclass(get_all, set_all)]</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5370">#5370</a></li> <li>Add <code>PyTypeCheck::classinfo_object</code> that returns an object that can be used as parameter in <code>isinstance</code> or <code>issubclass</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5387">#5387</a></li> <li>Implement <code>PyTypeInfo</code> on <code>datetime.*</code> types even when the limited API is enabled. <a href="https://redirect.github.com/PyO3/pyo3/pull/5388">#5388</a></li> <li>Implement <code>PyTypeInfo</code> on <code>PyIterator</code>, <code>PyMapping</code> and <code>PySequence</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5402">#5402</a></li> <li>Implement <code>PyTypeInfo</code> on <code>PyCode</code> when using the stable ABI. <a href="https://redirect.github.com/PyO3/pyo3/pull/5403">#5403</a></li> <li>Implement <code>PyTypeInfo</code> on <code>PyWeakrefReference</code> when using the stable ABI. <a href="https://redirect.github.com/PyO3/pyo3/pull/5404">#5404</a></li> <li>Add <code>pyo3::sync::RwLockExt</code> trait, analogous to <code>pyo3::sync::MutexExt</code> for readwrite locks. <a href="https://redirect.github.com/PyO3/pyo3/pull/5435">#5435</a></li> <li>Add <code>PyString::from_bytes</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5437">#5437</a></li> <li>Implement <code>AsRef<[u8]></code> for <code>PyBytes</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5445">#5445</a></li> <li>Add <code>CastError</code> and <code>CastIntoError</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5468">#5468</a></li> <li>Add <code>PyCapsuleMethods::pointer_checked</code> and <code>PyCapsuleMethods::is_valid_checked</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5474">#5474</a></li> <li>Add <code>Borrowed::cast</code>, <code>Borrowed::cast_exact</code> and <code>Borrowed::cast_unchecked</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5475">#5475</a></li> <li>Add conversions for <code>jiff::civil::ISOWeekDate</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5478">#5478</a></li> <li>Add conversions for <code>&Cstr</code>, <code>Cstring</code> and <code>Cow<Cstr></code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5482">#5482</a></li> <li>add <code>#[pyclass(skip_from_py_object)]</code> option, to opt-out of the <code>FromPyObject: PyClass + Clone</code> blanket impl. <a href="https://redirect.github.com/PyO3/pyo3/pull/5488">#5488</a></li> <li>Add <code>PyErr::add_note</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5489">#5489</a></li> <li>Add <code>FromPyObject</code> impl for <code>Cow<Path></code> & <code>Cow<OsStr></code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5497">#5497</a></li> <li>Add <code>#[pyclass(from_py_object)]</code> pyclass option, to opt-in to the extraction of pyclasses by value (requires <code>Clone</code>). <a href="https://redirect.github.com/PyO3/pyo3/pull/5506">#5506</a></li> </ul> <h3>Changed</h3> <ul> <li>Rework <code>FromPyObject</code> trait for flexibility and performance: <a href="https://redirect.github.com/PyO3/pyo3/pull/4390">#4390</a> <ul> <li>Add a second lifetime to <code>FromPyObject</code>, to allow borrowing data from Python objects (e.g. <code>&str</code> from Python <code>str</code>).</li> <li>Replace <code>extract_bound</code> with <code>extract</code>, which takes <code>Borrowed<'a, 'py, PyAny></code>.</li> </ul> </li> <li>Optimize <code>FromPyObject</code> implementations for <code>Vec<u8></code> and <code>[u8; N]</code> from <code>bytes</code> and <code>bytearray</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5244">#5244</a></li> <li>Deprecate <code>#[pyfn]</code> attribute. <a href="https://redirect.github.com/PyO3/pyo3/pull/5384">#5384</a></li> <li>Fetch type name dynamically on cast errors instead of using <code>PyTypeCheck::NAME</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/5387">#5387</a></li> <li>Deprecate <code>PyTypeCheck::NAME</code> in favour of <code>PyTypeCheck::classinfo_object</code> which provides the type information at runtime. <a href="https://redirect.github.com/PyO3/pyo3/pull/5387">#5387</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyO3/pyo3/commit/9fbcf7c801dca56a985118ea20d10e9fab7c71ba"><code>9fbcf7c</code></a> release: 0.27.1</li> <li><a href="https://github.com/PyO3/pyo3/commit/fdfddc8e1e37d462c13b3fc9a5e07d7a2a945280"><code>fdfddc8</code></a> Expose types::iterator::PySendResult in types module (<a href="https://redirect.github.com/pyo3/pyo3/issues/5539">#5539</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/a09540b8cebef6192c79b9689ca10d6f343f744f"><code>a09540b</code></a> update MSRV shields.io badge (<a href="https://redirect.github.com/pyo3/pyo3/issues/5540">#5540</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/1e6db5356774e2e30e83bf3b31b81836337f19e3"><code>1e6db53</code></a> fixes <a href="https://redirect.github.com/pyo3/pyo3/issues/5537">#5537</a> -- silence a clippy warning on rust 1.83 (<a href="https://redirect.github.com/pyo3/pyo3/issues/5538">#5538</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/752551221a1532350778029ac1094bf18dfb493c"><code>7525512</code></a> release: 0.27.0 (<a href="https://redirect.github.com/pyo3/pyo3/issues/5520">#5520</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/b392013ca34bd1e27bc06f9f57b11583fcb21692"><code>b392013</code></a> ci: install lychee stable using <code>install-action</code> (<a href="https://redirect.github.com/pyo3/pyo3/issues/5528">#5528</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/f32ed83e32dc822e3dc869d1c4517055ce6de35d"><code>f32ed83</code></a> fix PyPyModule_ExecDef, PyPyModule_FromDefAndSpec2 definitions (<a href="https://redirect.github.com/pyo3/pyo3/issues/5529">#5529</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/02b54ebd6e005fd70c3a77aa53a114e5169e49d7"><code>02b54eb</code></a> make warning name distinct in warnings tests (<a href="https://redirect.github.com/pyo3/pyo3/issues/5532">#5532</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/999ee8ab0fed19fff2f02466e93782e42a4caf94"><code>999ee8a</code></a> ci: enable more tests on 3.14t (<a href="https://redirect.github.com/pyo3/pyo3/issues/5524">#5524</a>)</li> <li><a href="https://github.com/PyO3/pyo3/commit/8f669e7af981df8d4a0c8ae2481f1590a94c947f"><code>8f669e7</code></a> attempt to improve unsupported Python version error (<a href="https://redirect.github.com/pyo3/pyo3/issues/5519">#5519</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pyo3/pyo3/compare/v0.26.0...v0.27.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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
