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

   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>
   <h2>Mypy 2.1</h2>
   <p>We’ve just uploaded mypy 2.1.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>librt.vecs: Fast Growable Array Type for Mypyc</h3>
   <p>The new <code>librt.vecs</code> module provides an efficient growable 
array type <code>vec</code> that is
   optimized for mypyc use. It provides fast, packed arrays with integer and 
floating point
   value types, which can be <strong>several times faster</strong> than 
<code>list</code>, and tens of times faster
   than <code>array.array</code> in code compiled using mypyc. It also supports 
nested <code>vec</code> objects and
   non-value-type items, such as <code>vec[vec[str]]</code>.</p>
   <p>Refer to the <a 
href="https://mypyc.readthedocs.io/en/latest/librt_vecs.html";>documentation</a> 
for
   the details.</p>
   <p>Contributed by Jukka Lehtosalo.</p>
   <h3>librt.random: Fast Pseudo-Random Number Generation</h3>
   <p>The new <code>librt.random</code> module provides fast pseudo-random 
number generation that is
   optimized for code compiled using mypyc. It can be 3x to 10x faster than the 
stdlib
   <code>random</code> module in compiled code.</p>
   <p>Refer to the <a 
href="https://mypyc.readthedocs.io/en/latest/librt_random.html";>documentation</a>
 for
   the details.</p>
   <p>Contributed by Jukka Lehtosalo (PR <a 
href="https://redirect.github.com/python/mypy/pull/21433";>21433</a>).</p>
   <h3>Mypyc Improvements</h3>
   <ul>
   <li>Make compilation order with multiple files consistent (Piotr Sawicki, PR 
<a href="https://redirect.github.com/python/mypy/pull/21419";>21419</a>)</li>
   <li>Fix crash on accessing <code>StopAsyncIteration</code> (Piotr Sawicki, 
PR <a href="https://redirect.github.com/python/mypy/pull/21406";>21406</a>)</li>
   <li>Fix incremental compilation with <code>separate</code> flag (Vaggelis 
Danias, PR <a 
href="https://redirect.github.com/python/mypy/pull/21299";>21299</a>)</li>
   </ul>
   <h3>Fixes to Crashes</h3>
   <ul>
   <li>Fix crash on partial type with <code>--allow-redefinition</code> and 
<code>global</code> declaration (Jukka Lehtosalo, PR <a 
href="https://redirect.github.com/python/mypy/pull/21428";>21428</a>)</li>
   <li>Fix broken awaitable generator patching (Ivan Levkivskyi, PR <a 
href="https://redirect.github.com/python/mypy/pull/21435";>21435</a>)</li>
   </ul>
   <h3>Changes to Messages</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/python/mypy/commit/c1c336d7e34eb313080c79b156518c58d27c7234";><code>c1c336d</code></a>
 Remove +dev from version</li>
   <li><a 
href="https://github.com/python/mypy/commit/74df14b7cbf08140236aa45bbb7f42219b0b1df7";><code>74df14b</code></a>
 Add changelog for mypy 2.1 (<a 
href="https://redirect.github.com/python/mypy/issues/21464";>#21464</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/022d9bc96f86c40f338a5cf150f1806cc8f300ff";><code>022d9bc</code></a>
 Revert &quot;TypeForm: Enable by default (<a 
href="https://redirect.github.com/python/mypy/issues/21262";>#21262</a>)&quot;</li>
   <li><a 
href="https://github.com/python/mypy/commit/8826288214f1cb31496e610667481221e025359c";><code>8826288</code></a>
 [mypyc] Document librt.random (<a 
href="https://redirect.github.com/python/mypy/issues/21463";>#21463</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/3f4067b699dbe52d08e42ef3b3ebfdebdc06bd96";><code>3f4067b</code></a>
 Bump librt version to 0.11.0 (<a 
href="https://redirect.github.com/python/mypy/issues/21458";>#21458</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/2b1eb58a250c5f1eb4ef5fb1f312ff528c5a1d4e";><code>2b1eb58</code></a>
 [mypyc] Enable incremental self-compilation (<a 
href="https://redirect.github.com/python/mypy/issues/21369";>#21369</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/8152f4af3f6c03beaf2660026240f0fdce7feecc";><code>8152f4a</code></a>
 Respect file config comments for stale modules (<a 
href="https://redirect.github.com/python/mypy/issues/21444";>#21444</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/116d60bdd3fdfe8d97c6afe99370910db56f1b92";><code>116d60b</code></a>
 Fix nondeterminism from nonassociativity of overload joins (<a 
href="https://redirect.github.com/python/mypy/issues/21455";>#21455</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/6c4af8e42110cea3f84bc02add2ca7b89c268210";><code>6c4af8e</code></a>
 Fix function call message change for small number of args (<a 
href="https://redirect.github.com/python/mypy/issues/21432";>#21432</a>)</li>
   <li><a 
href="https://github.com/python/mypy/commit/4b8fdcaf24032592510e8f15421fb32d82a71800";><code>4b8fdca</code></a>
 [mypyc] Add librt.random module (<a 
href="https://redirect.github.com/python/mypy/issues/21433";>#21433</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/python/mypy/compare/v0.1.0...v2.1.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