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/06/01 09:01:35 UTC

[GitHub] [arrow-datafusion] dependabot[bot] opened a new pull request, #6511: chore(deps): update pyo3 requirement from 0.18.0 to 0.19.0

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

   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.18.3</h2>
   <p>This release fixes an issue with <code>PyDateTime::type_object()</code> incorrectly returning the type object for <code>PyDate</code>, which would cause some <code>is_instance</code> checks to behave incorrectly.</p>
   <p>In addition, this release contains a handful of minor quality-of-life corrections over PyO3 0.18.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/davidhewitt"><code>@​davidhewitt</code></a>
   <a href="https://github.com/decathorpe"><code>@​decathorpe</code></a>
   <a href="https://github.com/ijl"><code>@​ijl</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/sollyucko"><code>@​sollyucko</code></a>
   <a href="https://github.com/willstott101"><code>@​willstott101</code></a>
   <a href="https://github.com/wjones127"><code>@​wjones127</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.18.3] - 2023-04-13</h2>
   <h3>Added</h3>
   <ul>
   <li>Add <code>GILProtected&lt;T&gt;</code> to mediate concurrent access to a value using Python's global interpreter lock (GIL). <a href="https://redirect.github.com/PyO3/pyo3/pull/2975">#2975</a></li>
   <li>Support <code>PyASCIIObject</code> / <code>PyUnicode</code> and associated methods on big-endian architectures. <a href="https://redirect.github.com/PyO3/pyo3/pull/3015">#3015</a></li>
   <li>Add FFI definition <code>_PyDict_Contains_KnownHash()</code> for CPython 3.10 and up. <a href="https://redirect.github.com/PyO3/pyo3/pull/3088">#3088</a></li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Fix compile error for <code>#[pymethods]</code> and <code>#[pyfunction]</code> called &quot;output&quot;. <a href="https://redirect.github.com/PyO3/pyo3/pull/3022">#3022</a></li>
   <li>Fix compile error in generated code for magic methods implemented as a <code>#[staticmethod]</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3055">#3055</a></li>
   <li>Fix <code>is_instance</code> for <code>PyDateTime</code> (would incorrectly check for a <code>PyDate</code>). <a href="https://redirect.github.com/PyO3/pyo3/pull/3071">#3071</a></li>
   <li>Fix upstream deprecation of <code>PyUnicode_InternImmortal</code> since Python 3.10. <a href="https://redirect.github.com/PyO3/pyo3/pull/3087">#3071</a></li>
   </ul>
   <h2>[0.18.2] - 2023-03-24</h2>
   <h3>Packaging</h3>
   <ul>
   <li>Disable default features of <code>chrono</code> to avoid depending on <code>time</code> v0.1.x. <a href="https://redirect.github.com/PyO3/pyo3/pull/2939">#2939</a></li>
   </ul>
   <h3>Added</h3>
   <ul>
   <li>Implement <code>IntoPy&lt;PyObject&gt;</code>, <code>ToPyObject</code> and <code>FromPyObject</code> for <code>Cow&lt;[u8]&gt;</code> to efficiently handle both <code>bytes</code> and <code>bytearray</code> objects. <a href="https://redirect.github.com/PyO3/pyo3/pull/2899">#2899</a></li>
   <li>Implement <code>IntoPy&lt;PyObject&gt;</code>, <code>ToPyObject</code> and <code>FromPyObject</code> for <code>Cell&lt;T&gt;</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/3014">#3014</a></li>
   <li>Add <code>PyList::to_tuple()</code>, as a convenient and efficient conversion from lists to tuples. <a href="https://redirect.github.com/PyO3/pyo3/pull/3042">#3042</a></li>
   <li>Add <code>PyTuple::to_list()</code>, as a convenient and efficient conversion from tuples to lists. <a href="https://redirect.github.com/PyO3/pyo3/pull/3044">#3044</a></li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>Optimize <code>PySequence</code> conversion for <code>list</code> and <code>tuple</code> inputs. <a href="https://redirect.github.com/PyO3/pyo3/pull/2944">#2944</a></li>
   <li>Improve exception raised when creating <code>#[pyclass]</code> type object fails during module import. <a href="https://redirect.github.com/PyO3/pyo3/pull/2947">#2947</a></li>
   <li>Optimize <code>PyMapping</code> conversion for <code>dict</code> inputs. <a href="https://redirect.github.com/PyO3/pyo3/pull/2954">#2954</a></li>
   <li>Allow <code>create_exception!</code> to take a <code>dotted.module</code> to place the exception in a submodule. <a href="https://redirect.github.com/PyO3/pyo3/pull/2979">#2979</a></li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Fix a reference counting race condition affecting <code>PyObject</code>s cloned in <code>allow_threads</code> blocks. <a href="https://redirect.github.com/PyO3/pyo3/pull/2952">#2952</a></li>
   <li>Fix <code>clippy::redundant_closure</code> lint on default arguments in <code>#[pyo3(signature = (...))]</code> annotations. <a href="https://redirect.github.com/PyO3/pyo3/pull/2990">#2990</a></li>
   <li>Fix <code>non_snake_case</code> lint on generated code in <code>#[pyfunction]</code> macro. <a href="https://redirect.github.com/PyO3/pyo3/pull/2993">#2993</a></li>
   <li>Fix some FFI definitions for the upcoming PyPy 3.10 release. <a href="https://redirect.github.com/PyO3/pyo3/pull/3031">#3031</a></li>
   </ul>
   <h2>[0.18.1] - 2023-02-07</h2>
   <h3>Added</h3>
   <ul>
   <li>Add <code>PyErr::write_unraisable()</code>. <a href="https://redirect.github.com/PyO3/pyo3/pull/2889">#2889</a></li>
   <li>Add <code>Python::Ellipsis()</code> and <code>PyAny::is_ellipsis()</code> methods. <a href="https://redirect.github.com/PyO3/pyo3/pull/2911">#2911</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/5cdc1337c8dfbd9497e3b1caee4ec25542b9b66b"><code>5cdc133</code></a> release: 0.18.3</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/a8dd453d1786f03062e4e89a1d3f0c00f06c5f70"><code>a8dd453</code></a> PEP 623: wstr, wstr_length, state changes</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/9ebdcb7fd76f471a9528c7ac5ec21d5dcfec4b2c"><code>9ebdcb7</code></a> Define _PyDict_Contains_KnownHash() FFI for CPython 3.10 or later</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/7cc264415b458ff6c4c5d33168b796523e7b7717"><code>7cc2644</code></a> Fix redundant imports in doc tests thereby fixing the careful CI job.</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/84980037b198269ce4fe2b3b48faff0a0c6dc104"><code>8498003</code></a> docs: show pattern for self.<strong>class</strong>.<strong>name</strong> in <strong>repr</strong></li>
   <li><a href="https://github.com/PyO3/pyo3/commit/63ff26293fb90869abfeafc97dc321caec672ad7"><code>63ff262</code></a> fix typo DateType -&gt; DateTimeType, fixes <a href="https://redirect.github.com/pyo3/pyo3/issues/3069">#3069</a></li>
   <li><a href="https://github.com/PyO3/pyo3/commit/48c0655f91c70ba2f6807c898548e3f7635d7c09"><code>48c0655</code></a> Add wrapper for PyASCIIObject state bitfield accesses based on bindgen</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/ce288e6da379675fc85f86762194b9854e06b455"><code>ce288e6</code></a> CI: Pin <code>inventory</code> to <code>0.3.4</code> in MSRV job</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/9dccad358a49eea4adc9eb38de78741a8153bd1f"><code>9dccad3</code></a> Emit a better error for bad argument names</li>
   <li><a href="https://github.com/PyO3/pyo3/commit/24d2ddd392b4ab528573dd2d713f6f61f3b06b9e"><code>24d2ddd</code></a> Fix function name shadowing</li>
   <li>Additional commits viewable in <a href="https://github.com/pyo3/pyo3/compare/v0.18.0...v0.18.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-datafusion] dependabot[bot] commented on pull request #6511: chore(deps): update pyo3 requirement from 0.18.0 to 0.19.0

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

   OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts on it.


-- 
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-datafusion] tustvold closed pull request #6511: chore(deps): update pyo3 requirement from 0.18.0 to 0.19.0

Posted by "tustvold (via GitHub)" <gi...@apache.org>.
tustvold closed pull request #6511: chore(deps): update pyo3 requirement from 0.18.0 to 0.19.0
URL: https://github.com/apache/arrow-datafusion/pull/6511


-- 
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-datafusion] alamb commented on pull request #6511: chore(deps): update pyo3 requirement from 0.18.0 to 0.19.0

Posted by "alamb (via GitHub)" <gi...@apache.org>.
alamb commented on PR #6511:
URL: https://github.com/apache/arrow-datafusion/pull/6511#issuecomment-1572732884

   This upgrade needs to wait for the next arrow upgrade -- to get https://github.com/apache/arrow-rs/pull/4335


-- 
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