dependabot[bot] opened a new pull request, #8941:
URL: https://github.com/apache/arrow-rs/pull/8941

   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.2</h2>
   <p>This patch contains very minor fixes for the PyO3 0.27 series:</p>
   <ul>
   <li>Workaround a rustc 1.92+ crash compiling PyO3 with both debug assertions 
and optimizations enabled.</li>
   <li>Fix runtime crash when subclassing dicts on PyPy and GraalPy.</li>
   </ul>
   <p>There are also a number of documentation improvements applied across the 
codebase.</p>
   <p>Thank you to the following contributors for the improvements:</p>
   <p><a href="https://github.com/davidhewitt";><code>@​davidhewitt</code></a>
   <a href="https://github.com/dependabot";><code>@​dependabot</code></a>[bot]
   <a 
href="https://github.com/MusicalNinjaDad";><code>@​MusicalNinjaDad</code></a>
   <a href="https://github.com/pkalivas";><code>@​pkalivas</code></a>
   <a href="https://github.com/tpoliaw";><code>@​tpoliaw</code></a>
   <a href="https://github.com/Tpt";><code>@​Tpt</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/PyO3/pyo3/blob/v0.27.2/CHANGELOG.md";>pyo3's 
changelog</a>.</em></p>
   <blockquote>
   <h2>[0.27.2] - 2025-11-30</h2>
   <h3>Changed</h3>
   <ul>
   <li>Disable subclassing <code>PyDict</code> on GraalPy (unsupported for now, 
may crash at runtime). <a 
href="https://redirect.github.com/PyO3/pyo3/pull/5653";>#5653</a></li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Fix crash when compiling on Rust 1.92+ with both debug assertions and 
optimizations enabled. <a 
href="https://redirect.github.com/PyO3/pyo3/pull/5638";>#5638</a></li>
   <li>Fix FFI definition of <code>PyDictObject</code> on PyPy. <a 
href="https://redirect.github.com/PyO3/pyo3/pull/5653";>#5653</a></li>
   </ul>
   <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&lt;[u8]&gt;</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>&amp;Cstr</code>, <code>Cstring</code> and 
<code>Cow&lt;Cstr&gt;</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&lt;Path&gt;</code> 
&amp; <code>Cow&lt;OsStr&gt;</code>. <a 
href="https://redirect.github.com/PyO3/pyo3/pull/5497";>#5497</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/117102d832d7bd7e66e75501e5722976b28b1a88";><code>117102d</code></a>
 release: 0.27.2</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/2b1d6c5815719558845c21ef54110e2c66bd6fe1";><code>2b1d6c5</code></a>
 fix FFI definition of <code>PyDictObject</code> on PyPy (<a 
href="https://redirect.github.com/pyo3/pyo3/issues/5653";>#5653</a>)</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/032d4d331dbb76e0641c36c5f3f8b08c6879bb8c";><code>032d4d3</code></a>
 ci: add lychee cache (<a 
href="https://redirect.github.com/pyo3/pyo3/issues/5616";>#5616</a>)</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/b4f78c04786cbd070fc66405a38bdbb054fe46cc";><code>b4f78c0</code></a>
 fix <code>rumdl</code> formatting</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/0497d48dea5bba2927e8e283c944bab806ec0463";><code>0497d48</code></a>
 ci: remove old netlify build files (<a 
href="https://redirect.github.com/pyo3/pyo3/issues/5631";>#5631</a>)</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/f3d6e05930ff31d6ba29b2e29bd4f052a26cec93";><code>f3d6e05</code></a>
 Avoid introducing generic parameter with implied bounds from an associated 
ty...</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/c8e6597ed79582f433394150a03a12198a374d58";><code>c8e6597</code></a>
 ci: pin <code>mdbook</code> to 0.4 for now, properly install 
<code>mdbook-tabs</code> (<a 
href="https://redirect.github.com/pyo3/pyo3/issues/5632";>#5632</a>)</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/30cca7edb5da6ae46968f1b98da60840f6bbccaf";><code>30cca7e</code></a>
 build(deps): bump actions/checkout from 5.0.0 to 5.0.1 (<a 
href="https://redirect.github.com/pyo3/pyo3/issues/5629";>#5629</a>)</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/bb7bb947b7b474a71e56322bea0ee83ab0f6d039";><code>bb7bb94</code></a>
 Update PyIterator::send docs to match behaviour (<a 
href="https://redirect.github.com/pyo3/pyo3/issues/5593";>#5593</a>)</li>
   <li><a 
href="https://github.com/PyO3/pyo3/commit/1acadc5ace9c7d0d008926523ba8a1310c1de3d1";><code>1acadc5</code></a>
 Add radiate to README examples section (<a 
href="https://redirect.github.com/pyo3/pyo3/issues/5561";>#5561</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/pyo3/pyo3/compare/v0.26.0...v0.27.2";>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]

Reply via email to