You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/02/08 21:39:32 UTC

[GitHub] [arrow-ballista-python] dependabot[bot] opened a new pull request, #9: Update pyo3 requirement from ~0.17.1 to ~0.18.1

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

   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.17.3</h2>
   <p>This release confirms support for Python 3.11 in PyO3.</p>
   <p>(Previous versions of PyO3 0.17 had been tested against release candidates of Python 3.11 and no Python 3.11 fixes have been added since 0.17.0, so all PyO3 0.17 versions should in practice be fine to use with Python 3.11.)</p>
   <p>In addition, some other small additions and fixes have been added on top of PyO3 0.17.2.</p>
   <p>Thank you to the following users for the improvements:</p>
   <p><a href="https://github.com/adamreichold"><code>@​adamreichold</code></a>
   <a href="https://github.com/ctb"><code>@​ctb</code></a>
   <a href="https://github.com/datapythonista"><code>@​datapythonista</code></a>
   <a href="https://github.com/davidhewitt"><code>@​davidhewitt</code></a>
   <a href="https://github.com/messense"><code>@​messense</code></a>
   <a href="https://github.com/saethlin"><code>@​saethlin</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.17.3] - 2022-11-01</h2>
   <h3>Packaging</h3>
   <ul>
   <li>Support Python 3.11. (Previous versions of PyO3 0.17 have been tested against Python 3.11 release candidates and are expected to be compatible, this is the first version tested against Python 3.11.0.) <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2708">#2708</a></li>
   </ul>
   <h3>Added</h3>
   <ul>
   <li>Implemented <code>ExactSizeIterator</code> for <code>PyListIterator</code>, <code>PyDictIterator</code>, <code>PySetIterator</code> and <code>PyFrozenSetIterator</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2676">#2676</a></li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Fix regression of <code>impl FromPyObject for [T; N]</code> no longer accepting types passing <code>PySequence_Check</code>, e.g. NumPy arrays, since version 0.17.0. This the same fix that was applied <code>impl FromPyObject for Vec&lt;T&gt;</code> in version 0.17.1 extended to fixed-size arrays. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2675">#2675</a></li>
   <li>Fix UB in <code>FunctionDescription::extract_arguments_fastcall</code> due to creating slices from a null pointer. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2687">#2687</a></li>
   </ul>
   <h2>[0.17.2] - 2022-10-04</h2>
   <h3>Packaging</h3>
   <ul>
   <li>Added optional <code>chrono</code> feature to convert <code>chrono</code> types into types in the <code>datetime</code> module. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2612">#2612</a></li>
   </ul>
   <h3>Added</h3>
   <ul>
   <li>Add support for <code>num-bigint</code> feature on <code>PyPy</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2626">#2626</a></li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Correctly implement <code>__richcmp__</code> for enums, fixing <code>__ne__</code> returning always returning <code>True</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2622">#2622</a></li>
   <li>Fix compile error since 0.17.0 with <code>Option&lt;&amp;SomePyClass&gt;</code> argument with a default. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2630">#2630</a></li>
   <li>Fix regression of <code>impl FromPyObject for Vec&lt;T&gt;</code> no longer accepting types passing <code>PySequence_Check</code>, e.g. NumPy arrays, since 0.17.0. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2631">#2631</a></li>
   </ul>
   <h2>[0.17.1] - 2022-08-28</h2>
   <h3>Fixed</h3>
   <ul>
   <li>Fix visibility of <code>PyDictItems</code>, <code>PyDictKeys</code>, and <code>PyDictValues</code> types added in PyO3 0.17.0.</li>
   <li>Fix compile failure when using <code>#[pyo3(from_py_with = &quot;...&quot;)]</code> attribute on an argument of type <code>Option&lt;T&gt;</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2592">#2592</a></li>
   <li>Fix clippy <code>redundant-closure</code> lint on <code>**kwargs</code> arguments for <code>#[pyfunction]</code> and <code>#[pymethods]</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2595">#2595</a></li>
   </ul>
   <h2>[0.17.0] - 2022-08-23</h2>
   <h3>Packaging</h3>
   <ul>
   <li>Update inventory dependency to <code>0.3</code> (the <code>multiple-pymethods</code> feature now requires Rust 1.62 for correctness). <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2492">#2492</a></li>
   </ul>
   <h3>Added</h3>
   <ul>
   <li>Add <code>timezone_utc</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/1588">#1588</a></li>
   <li>Implement <code>ToPyObject</code> for <code>[T; N]</code>. <a href="https://github-redirect.dependabot.com/PyO3/pyo3/pull/2313">#2313</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/a3edbf4fcd595f0e234c87d4705eb600a9779130"><code>a3edbf4</code></a> release: 0.17.3</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/062470a94b135736b2a29b5fa81a09d2fcba0001"><code>062470a</code></a> Fix module name in getting started</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/5bbd21cc38e138ef1ee585b96d704cc1274d25ba"><code>5bbd21c</code></a> Disable <code>PyModule::filename</code> on PyPy</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/522ac1c1583e366b42afc0c78c331d3aa91f4763"><code>522ac1c</code></a> Run Rust tests using Valgrind and cargo-careful (<a href="https://github-redirect.dependabot.com/pyo3/pyo3/issues/2706">#2706</a>)</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/47540b8088a32f69220558971e3bd66a29bca123"><code>47540b8</code></a> packaging: support Python 3.11</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/64f52c6b4a517597ee5ebaa3fc7dafd78753c4b8"><code>64f52c6</code></a> add internal release notes</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/8088af3a00d6fbd1e0f7d8bb92c54250de4079c5"><code>8088af3</code></a> Avoid calling slice::from_raw_parts with a null pointer</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/b6f17aaecc3ba676491127fbb1671a777236b096"><code>b6f17aa</code></a> Update getting_started.md</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/7647b7022410f3834617fbf88ddf7f0707d0450d"><code>7647b70</code></a> Point new users at specific source file for Rust code.</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/e48525fa2dcdb8ac28acc33792060ba37d8ac382"><code>e48525f</code></a> Add more implementations of ExactSizeIterator when iterating built-in Python ...</li>
   <li>Additional commits viewable in <a href="https://github.com/pyo3/pyo3/compare/v0.17.1...v0.17.3">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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-ballista-python] dependabot[bot] closed pull request #9: Update pyo3 requirement from ~0.17.1 to ~0.18.1

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] closed pull request #9: Update pyo3 requirement from ~0.17.1 to ~0.18.1
URL: https://github.com/apache/arrow-ballista-python/pull/9


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-ballista-python] dependabot[bot] commented on pull request #9: Update pyo3 requirement from ~0.17.1 to ~0.18.1

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #9:
URL: https://github.com/apache/arrow-ballista-python/pull/9#issuecomment-1423273970

   The following labels could not be found: `auto-dependencies`.


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-ballista-python] dependabot[bot] commented on pull request #9: Update pyo3 requirement from ~0.17.1 to ~0.18.1

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #9:
URL: https://github.com/apache/arrow-ballista-python/pull/9#issuecomment-1443787279

   Looks like pyo3 is no longer updatable, so this is no longer needed.


-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org