dependabot[bot] opened a new pull request #1895: URL: https://github.com/apache/arrow-datafusion/pull/1895
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.15.1</h2> <p>This release is a set of bug fixes for some minor issues reported since PyO3 0.15's release. There are also some small additions for those storing <code>PyIterator</code>, <code>PySequence</code>, and <code>PyMapping</code> in <code>Py</code> smart pointers, and a <code>PyTraceback</code> type to ease interacting with Python tracebacks from Rust.</p> <p>For full details of all changes, see the <a href="https://pyo3.rs/v0.15.1/changelog.html">CHANGELOG</a>.</p> <p>Thank you to everyone who contributed code, documentation, design ideas, bug reports, and feedback. The following users' commits are included in this release:</p> <p><a href="https://github.com/dansvo"><code>@dansvo</code></a> <a href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> <a href="https://github.com/KRunchPL"><code>@KRunchPL</code></a> <a href="https://github.com/mejrs"><code>@mejrs</code></a> <a href="https://github.com/messense"><code>@messense</code></a> <a href="https://github.com/moriyoshi"><code>@moriyoshi</code></a> <a href="https://github.com/saidvandeklundert"><code>@saidvandeklundert</code></a> <a href="https://github.com/taiki-e"><code>@taiki-e</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.15.1] - 2021-11-19</h2> <h3>Added</h3> <ul> <li>Add implementations for <code>Py::as_ref()</code> and <code>Py::into_ref()</code> for <code>Py<PySequence></code>, <code>Py<PyIterator></code> and <code>Py<PyMapping></code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1682">#1682</a></li> <li>Add <code>PyTraceback</code> type to represent and format Python tracebacks. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1977">#1977</a></li> </ul> <h3>Changed</h3> <ul> <li><code>#[classattr]</code> constants with a known magic method name (which is lowercase) no longer trigger lint warnings expecting constants to be uppercase. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1969">#1969</a></li> </ul> <h3>Fixed</h3> <ul> <li>Fix creating <code>#[classattr]</code> by functions with the name of a known magic method. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1969">#1969</a></li> <li>Fix use of <code>catch_unwind</code> in <code>allow_threads</code> which can cause fatal crashes. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1989">#1989</a></li> <li>Fix build failure on PyPy when abi3 features are activated. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1991">#1991</a></li> <li>Fix mingw platform detection. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1993">#1993</a></li> <li>Fix panic in <code>__get__</code> implementation when accessing descriptor on type object. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1997">#1997</a></li> </ul> <h2>[0.15.0] - 2021-11-03</h2> <h3>Packaging</h3> <ul> <li><code>pyo3</code>'s <code>Cargo.toml</code> now advertises <code>links = "python"</code> to inform Cargo that it links against <em>libpython</em>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1819">#1819</a></li> <li>Added optional <code>anyhow</code> feature to convert <code>anyhow::Error</code> into <code>PyErr</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1822">#1822</a></li> <li>Support Python 3.10. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1889">#1889</a></li> <li>Added optional <code>eyre</code> feature to convert <code>eyre::Report</code> into <code>PyErr</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1893">#1893</a></li> <li>Support PyPy 3.8. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1948">#1948</a></li> </ul> <h3>Added</h3> <ul> <li>Add <code>PyList::get_item_unchecked</code> and <code>PyTuple::get_item_unchecked</code> to get items without bounds checks. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1733">#1733</a></li> <li>Support <code>#[doc = include_str!(...)]</code> attributes on Rust 1.54 and up. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/issues/1746">#1746</a></li> <li>Add <code>PyAny::py</code> as a convenience for <code>PyNativeType::py</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1751">#1751</a></li> <li>Add implementation of <code>std::ops::Index<usize></code> for <code>PyList</code>, <code>PyTuple</code> and <code>PySequence</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1825">#1825</a></li> <li>Add range indexing implementations of <code>std::ops::Index</code> for <code>PyList</code>, <code>PyTuple</code> and <code>PySequence</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1829">#1829</a></li> <li>Add <code>PyMapping</code> type to represent the Python mapping protocol. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1844">#1844</a></li> <li>Add commonly-used sequence methods to <code>PyList</code> and <code>PyTuple</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1849">#1849</a></li> <li>Add <code>as_sequence</code> methods to <code>PyList</code> and <code>PyTuple</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1860">#1860</a></li> <li>Add support for magic methods in <code>#[pymethods]</code>, intended as a replacement for <code>#[pyproto]</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1864">#1864</a></li> <li>Add <code>abi3-py310</code> feature. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1889">#1889</a></li> <li>Add <code>PyCFunction::new_closure</code> to create a Python function from a Rust closure. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1901">#1901</a></li> <li>Add support for positional-only arguments in <code>#[pyfunction]</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1925">#1925</a></li> <li>Add <code>PyErr::take</code> to attempt to fetch a Python exception if present. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1957">#1957</a></li> </ul> <h3>Changed</h3> <ul> <li><code>PyList</code>, <code>PyTuple</code> and <code>PySequence</code>'s APIs now accepts only <code>usize</code> indices instead of <code>isize</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1733">#1733</a>, <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1802">#1802</a>, <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1803">#1803</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/eb5059acc7312bd03b793b2423d32b9d3b5dcc2e"><code>eb5059a</code></a> release: 0.15.1</li> <li><a href="https://github.com/PyO3/pyo3/commit/2f6ea2f96cf8d9f213ea6c8b047e95d5e4aecaca"><code>2f6ea2f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/pyo3/pyo3/issues/1999">#1999</a> from dansvo/guide-link-repair</li> <li><a href="https://github.com/PyO3/pyo3/commit/d9a3f67287f3ace3a01734d3fe9e33ce71f19c09"><code>d9a3f67</code></a> Fix broken relative markdown link in guide</li> <li><a href="https://github.com/PyO3/pyo3/commit/e790d55304dec613ac02c1bf505e5d68c8dc327b"><code>e790d55</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/pyo3/pyo3/issues/1997">#1997</a> from davidhewitt/get-panic</li> <li><a href="https://github.com/PyO3/pyo3/commit/26ccc1ab378be67212720b0defa6d63f23db913a"><code>26ccc1a</code></a> macros: fix panic in <strong>get</strong> implementation</li> <li><a href="https://github.com/PyO3/pyo3/commit/45059cbdb81fd3ab72a5ce530e3b99cc90383327"><code>45059cb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/pyo3/pyo3/issues/1990">#1990</a> from davidhewitt/allow-threads-unwind</li> <li><a href="https://github.com/PyO3/pyo3/commit/1df68e852ea3cdab1ea9644996ef0922e7d016df"><code>1df68e8</code></a> allow_threads: switch from <code>catch_unwind</code> to guard pattern</li> <li><a href="https://github.com/PyO3/pyo3/commit/3e16a2a45381d2c8b67d0b17d414afee975cab01"><code>3e16a2a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/pyo3/pyo3/issues/1995">#1995</a> from gertjanvanzwieten/fix-pycounter</li> <li><a href="https://github.com/PyO3/pyo3/commit/8e41483bad879020fc609bb795376aa67342f17e"><code>8e41483</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/pyo3/pyo3/issues/1991">#1991</a> from messense/pypy-abi3</li> <li><a href="https://github.com/PyO3/pyo3/commit/9ae7e31e9c8deb06080e700332bc27dd77ef4be7"><code>9ae7e31</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/pyo3/pyo3/issues/1977">#1977</a> from davidhewitt/traceback-type</li> <li>Additional commits viewable in <a href="https://github.com/pyo3/pyo3/compare/v0.15.0...v0.15.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 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