dependabot[bot] opened a new pull request, #3885:
URL: https://github.com/apache/avro/pull/3885

   Updates the requirements on [mypy](https://github.com/python/mypy) to permit 
the latest version.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/python/mypy/blob/master/CHANGELOG.md";>mypy's 
changelog</a>.</em></p>
   <blockquote>
   <h1>Mypy Release Notes</h1>
   <h2>Next Release</h2>
   <h3>Packaging changes</h3>
   <ul>
   <li>No longer provide mypyc-accelerated wheels for macOS x86_64 
[mypyc-wheels <a 
href="https://redirect.github.com/python/mypy/issues/119";>#119</a>](<a 
href="https://redirect.github.com/mypyc/mypy_mypyc-wheels/pull/119";>mypyc/mypy_mypyc-wheels#119</a>)</li>
   </ul>
   <h2>Mypy 2.3</h2>
   <p>We've just uploaded mypy 2.3.0 to the Python Package Index (<a 
href="https://pypi.org/project/mypy/";>PyPI</a>).
   Mypy is a static type checker for Python. This release includes new 
features, performance
   improvements and bug fixes. You can install it as follows:</p>
   <pre><code>python3 -m pip install -U mypy
   </code></pre>
   <p>You can read the full documentation for this release on <a 
href="http://mypy.readthedocs.io";>Read the Docs</a>.</p>
   <h3>The Upcoming Switch to the New Native Parser</h3>
   <p>We are planning to enable the new native parser 
(<code>--native-parser</code>) by
   default soon. We recommend that you test the native parser in your projects 
and report
   any issues in the <a href="https://github.com/python/mypy/issues";>mypy issue 
tracker</a>.</p>
   <h3>Mypyc Free-threading Memory Safety</h3>
   <p>Free-threaded Python builds that don't have the GIL require additional 
synchronization
   primitives or lock-free algorithms to ensure memory safety when there are 
race conditions
   (for example, when a thread reads a list item while another thread writes 
the same list
   item concurrently). This release greatly improves memory safety of free 
threading.</p>
   <p>List operations are now memory-safe on free threaded Python builds, even 
in the presence of
   race conditions. This has some performance cost. For list-heavy workloads, 
using
   <code>librt.vecs.vec</code> instead of list is often significantly faster, 
but note that <code>vec</code> is not
   (and likely won't be) fully memory safe, and the user is expected to avoid 
race conditions.
   The newly introduced <code>librt.threading.Lock</code> helps with this. 
Using variable-length tuples
   can also be more efficient than lists, since tuples are immutable and don't 
require
   expensive synchronization to ensure memory safety.</p>
   <p>Instance attribute access is also (mostly) memory safe now on 
free-threaded builds in
   the presence of race conditions. We are planning to fix the remaining unsafe 
cases in a
   future release.</p>
   <p>Full list of changes:</p>
   <ul>
   <li>Make attribute access memory safe on free-threaded builds (Jukka 
Lehtosalo, PR <a 
href="https://redirect.github.com/python/mypy/pull/21705";>21705</a>)</li>
   <li>Fix unsafe borrowing of instance attributes with free-threading (Jukka 
Lehtosalo, PR <a 
href="https://redirect.github.com/python/mypy/pull/21688";>21688</a>)</li>
   <li>Make list get/set item more memory safe on free-threaded builds (Jukka 
Lehtosalo, PR <a 
href="https://redirect.github.com/python/mypy/pull/21683";>21683</a>)</li>
   <li>Don't borrow list items on free-threaded builds (Jukka Lehtosalo, PR <a 
href="https://redirect.github.com/python/mypy/pull/21679";>21679</a>)</li>
   <li>Make multiple assignment from list memory-safe on free-threaded builds 
(Jukka Lehtosalo, PR <a 
href="https://redirect.github.com/python/mypy/pull/21684";>21684</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/python/mypy/commit/8aabf8435357eaffceca7237f371e293b8168e54";><code>8aabf84</code></a>
 Drop +dev from version</li>
   <li><a 
href="https://github.com/python/mypy/commit/4d8ad2ab5e86c99581b73775f2c00b9b8265b589";><code>4d8ad2a</code></a>
 Update changelog for 2.3 release (<a 
href="https://redirect.github.com/python/mypy/issues/21728";>#21728</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/2c2154672040c52e481f423854d104e6cf172585";><code>2c21546</code></a>
 [mypyc] Update documentation of race conditions under free threading (<a 
href="https://redirect.github.com/python/mypy/issues/21726";>#21726</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/a9f62a3cf98a58a7a2607b7c81695802b39f5edc";><code>a9f62a3</code></a>
 [mypyc] Make attribute access memory safe on free-threaded builds (<a 
href="https://redirect.github.com/python/mypy/issues/21705";>#21705</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/0faa413ebf7c924a864ef5dabd70303d898e7766";><code>0faa413</code></a>
 Use <code>PYODIDE</code> environment variable for Emscripten cross-compilation 
detection...</li>
   <li><a 
href="https://github.com/python/mypy/commit/3d75cdb09f0928fa8b83e5ef03572ed878ac8d09";><code>3d75cdb</code></a>
 [mypyc] Borrow final attributes more aggressively (<a 
href="https://redirect.github.com/python/mypy/issues/21702";>#21702</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/24c237d85b48f618e655ffff1dc0f19089d9b599";><code>24c237d</code></a>
 [mypyc] Improve documentation of Final (<a 
href="https://redirect.github.com/python/mypy/issues/21713";>#21713</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/b5be217392b9b2771d1764066b9d600bf93ce7a8";><code>b5be217</code></a>
 [mypyc] Update free threading Python compatibility docs (<a 
href="https://redirect.github.com/python/mypy/issues/21711";>#21711</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/cbcb51add3094ec91b29cdd4c624943bf251b63f";><code>cbcb51a</code></a>
 Narrow for frozendict membership check (<a 
href="https://redirect.github.com/python/mypy/issues/21709";>#21709</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/af2bc0f3cc7f2f129f0c11294158d0c292692c3d";><code>af2bc0f</code></a>
 Sync typeshed (<a 
href="https://redirect.github.com/python/mypy/issues/21707";>#21707</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/python/mypy/compare/v0.1.0...v2.3.0";>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 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