Commit 39bcc5a
authored
Bump the minor group with 3 updates (#263)
Bumps the minor group with 3 updates:
[mypy](https://github.com/python/mypy),
[nox](https://github.com/wntrblm/nox) and
[hypothesis](https://github.com/HypothesisWorks/hypothesis).
Updates `mypy` from 2.1.0 to 2.3.0
<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/v2.1.0...v2.3.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `nox` from 2026.4.10 to 2026.7.11
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/wntrblm/nox/releases">nox's
releases</a>.</em></p>
<blockquote>
<h2>2026.07.11 🏪</h2>
<p>This release drops Python 3.9 and brings a batch of performance
improvements, like caching uv detection and interpreter discovery, plus
lazy module imports on Python 3.15. Various bugs were fixed as well.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a
href="https://github.com/henryiii"><code>@henryiii</code></a></li>
<li><a
href="https://github.com/davidhewitt"><code>@davidhewitt</code></a></li>
<li><a href="https://github.com/SAY-5"><code>@SAY-5</code></a> (first
contribution)</li>
<li><a
href="https://github.com/Himanshuagrawal4"><code>@Himanshuagrawal4</code></a>
(first contribution)</li>
<li><a href="https://github.com/TejasAmle"><code>@TejasAmle</code></a>
(first contribution)</li>
<li><a
href="https://github.com/felixfontein"><code>@felixfontein</code></a>
(first contribution)</li>
</ul>
<p>Features:</p>
<ul>
<li>Drop Python 3.9 by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1049">wntrblm/nox#1049</a></li>
<li>Add <code>return_code</code> property to <code>CommandFailed</code>
exception by <a
href="https://github.com/felixfontein"><code>@felixfontein</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1129">wntrblm/nox#1129</a></li>
</ul>
<p>Performance:</p>
<ul>
<li>Cache session-name normalization, uv detection, interpreter
discovery, and metadata reads by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1113">wntrblm/nox#1113</a></li>
<li>Lazy modules on Python 3.15 by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1115">wntrblm/nox#1115</a></li>
</ul>
<p>Fixes:</p>
<ul>
<li>Script-mode pip resolution on Windows and
<code>--download-python</code> fallback by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1110">wntrblm/nox#1110</a></li>
<li>Don't crash when a parametrized session has an empty parameter list
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1109">wntrblm/nox#1109</a></li>
<li>Hash fully non-ASCII session names instead of returning the envdir
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1108">wntrblm/nox#1108</a></li>
<li>Interpreter-resolution edge cases in <code>virtualenv.py</code> by
<a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1111">wntrblm/nox#1111</a></li>
<li>Create missing parent directories for the session cache dir by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1104">wntrblm/nox#1104</a></li>
<li>Enforce <code>--error-on-external-run</code> even when
<code>log=False</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1107">wntrblm/nox#1107</a></li>
<li>Handle <code>=</code> in <code>set_env</code> values and out-of-tree
<code>change_dir</code> in <code>tox-to-nox</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1105">wntrblm/nox#1105</a></li>
<li>Return empty dict from <code>load_toml</code> when script file is
missing by <a href="https://github.com/SAY-5"><code>@SAY-5</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1096">wntrblm/nox#1096</a></li>
<li>Show envvars in CLI help by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1085">wntrblm/nox#1085</a></li>
</ul>
<p>Documentation:</p>
<ul>
<li>Add PyO3 as a user by <a
href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1123">wntrblm/nox#1123</a></li>
<li>List micromamba in <code>--default-venv-backend</code> supported
names by <a href="https://github.com/SAY-5"><code>@SAY-5</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1092">wntrblm/nox#1092</a></li>
<li>Clarify <code>session.notify</code> target docs by <a
href="https://github.com/Himanshuagrawal4"><code>@Himanshuagrawal4</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1099">wntrblm/nox#1099</a></li>
<li>Document venv backend for EOL Python by <a
href="https://github.com/Himanshuagrawal4"><code>@Himanshuagrawal4</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1101">wntrblm/nox#1101</a></li>
<li>Fix typo in README installation section by <a
href="https://github.com/TejasAmle"><code>@TejasAmle</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1097">wntrblm/nox#1097</a></li>
</ul>
<p>Internal changes:</p>
<ul>
<li>Add Python 3.15 to the test matrix and classifiers by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1133">wntrblm/nox#1133</a></li>
<li>Isolate <code>run_nox</code> envdir to fix flaky
<code>test_main_requires</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1134">wntrblm/nox#1134</a></li>
<li>Assorted simplifications and dead-code removal by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1112">wntrblm/nox#1112</a></li>
<li>Remove Python 3.9-era pins/backports and tighten generator
annotations by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1106">wntrblm/nox#1106</a></li>
<li>Run tests in parallel by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/965">wntrblm/nox#965</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/wntrblm/nox/blob/main/CHANGELOG.md">nox's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h2>2026.07.11</h2>
<p>This release drops Python 3.9 and brings a batch of performance
improvements,
like caching uv detection and interpreter discovery, plus lazy module
imports
on Python 3.15. Various bugs were fixed as well.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a
href="https://github.com/henryiii"><code>@henryiii</code></a></li>
<li><a
href="https://github.com/davidhewitt"><code>@davidhewitt</code></a></li>
<li><a href="https://github.com/SAY-5"><code>@SAY-5</code></a> (first
contribution)</li>
<li><a
href="https://github.com/Himanshuagrawal4"><code>@Himanshuagrawal4</code></a>
(first contribution)</li>
<li><a href="https://github.com/TejasAmle"><code>@TejasAmle</code></a>
(first contribution)</li>
<li><a
href="https://github.com/felixfontein"><code>@felixfontein</code></a>
(first contribution)</li>
</ul>
<p>Features:</p>
<ul>
<li>Drop Python 3.9 by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1049">wntrblm/nox#1049</a></li>
<li>Add <code>return_code</code> property to <code>CommandFailed</code>
exception by <a
href="https://github.com/felixfontein"><code>@felixfontein</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1129">wntrblm/nox#1129</a></li>
</ul>
<p>Performance:</p>
<ul>
<li>Cache session-name normalization, uv detection, interpreter
discovery, and metadata reads by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1113">wntrblm/nox#1113</a></li>
<li>Lazy modules on Python 3.15 by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1115">wntrblm/nox#1115</a></li>
</ul>
<p>Fixes:</p>
<ul>
<li>Script-mode pip resolution on Windows and
<code>--download-python</code> fallback by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1110">wntrblm/nox#1110</a></li>
<li>Don't crash when a parametrized session has an empty parameter list
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1109">wntrblm/nox#1109</a></li>
<li>Hash fully non-ASCII session names instead of returning the envdir
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1108">wntrblm/nox#1108</a></li>
<li>Interpreter-resolution edge cases in <code>virtualenv.py</code> by
<a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1111">wntrblm/nox#1111</a></li>
<li>Create missing parent directories for the session cache dir by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1104">wntrblm/nox#1104</a></li>
<li>Enforce <code>--error-on-external-run</code> even when
<code>log=False</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1107">wntrblm/nox#1107</a></li>
<li>Handle <code>=</code> in <code>set_env</code> values and out-of-tree
<code>change_dir</code> in <code>tox-to-nox</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1105">wntrblm/nox#1105</a></li>
<li>Return empty dict from <code>load_toml</code> when script file is
missing by <a href="https://github.com/SAY-5"><code>@SAY-5</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1096">wntrblm/nox#1096</a></li>
<li>Show envvars in CLI help by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1085">wntrblm/nox#1085</a></li>
</ul>
<p>Documentation:</p>
<ul>
<li>Add PyO3 as a user by <a
href="https://github.com/davidhewitt"><code>@davidhewitt</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1123">wntrblm/nox#1123</a></li>
<li>List micromamba in <code>--default-venv-backend</code> supported
names by <a href="https://github.com/SAY-5"><code>@SAY-5</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/1092">wntrblm/nox#1092</a></li>
<li>Clarify <code>session.notify</code> target docs by <a
href="https://github.com/Himanshuagrawal4"><code>@Himanshuagrawal4</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1099">wntrblm/nox#1099</a></li>
<li>Document venv backend for EOL Python by <a
href="https://github.com/Himanshuagrawal4"><code>@Himanshuagrawal4</code></a>
in <a
href="https://redirect.github.com/wntrblm/nox/pull/1101">wntrblm/nox#1101</a></li>
<li>Fix typo in README installation section by <a
href="https://github.com/TejasAmle"><code>@TejasAmle</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/1097">wntrblm/nox#1097</a></li>
</ul>
<p>Internal changes:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/wntrblm/nox/commit/3284968a16fa5bd7fc0cc64a69a531404ccb4756"><code>3284968</code></a>
chore: prepare release 2026.07.11 (<a
href="https://redirect.github.com/wntrblm/nox/issues/1132">#1132</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/d73f96a257af685c948326cd37a3125ffbe778dc"><code>d73f96a</code></a>
ci: add Python 3.15 to the test matrix and classifiers (<a
href="https://redirect.github.com/wntrblm/nox/issues/1133">#1133</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/53919851d49123393a6502df05a1350b0c2cfe0b"><code>5391985</code></a>
test: isolate run_nox envdir to fix flaky test_main_requires (<a
href="https://redirect.github.com/wntrblm/nox/issues/1134">#1134</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/390d8170819d239b278137503e691419c065fa6d"><code>390d817</code></a>
feat: add return_code to CommandFailed. (<a
href="https://redirect.github.com/wntrblm/nox/issues/1129">#1129</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/f1d521079f2c8d9d22494ce30d0f31e8a9cd7b86"><code>f1d5210</code></a>
chore(deps): bump the github-actions group with 2 updates (<a
href="https://redirect.github.com/wntrblm/nox/issues/1125">#1125</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/0894b7340d4012220e146bd56657edde41d91000"><code>0894b73</code></a>
chore(deps): bump the pre-commit group with 4 updates (<a
href="https://redirect.github.com/wntrblm/nox/issues/1126">#1126</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/9b747edbc2c72f147325742add03c2c201d7f018"><code>9b747ed</code></a>
ci: experimental MSYS2/MinGW test run (<a
href="https://redirect.github.com/wntrblm/nox/issues/1122">#1122</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/8a44270d63c7d232bf4dd0773a12e1d8b43649d4"><code>8a44270</code></a>
docs: add PyO3 as a user (<a
href="https://redirect.github.com/wntrblm/nox/issues/1123">#1123</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/5bd0f8357ef4bee910b03373b1cdb24de0a71f35"><code>5bd0f83</code></a>
perf: lazy modules on Python 3.15 (<a
href="https://redirect.github.com/wntrblm/nox/issues/1115">#1115</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/982fcfa6a5a5fa10c7777be0d60acd784121e319"><code>982fcfa</code></a>
chore(deps): bump dependency-groups in the pre-commit group (<a
href="https://redirect.github.com/wntrblm/nox/issues/1121">#1121</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/wntrblm/nox/compare/2026.04.10...2026.07.11">compare
view</a></li>
</ul>
</details>
<br />
Updates `hypothesis` from 6.155.7 to 6.163.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/793e92df4baa95a10f7f7f63751d88517fbd4bfb"><code>793e92d</code></a>
Bump hypothesis version to 6.163.0 and update changelog</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/ba2899bc218ab778adb3ab7316f7137388960802"><code>ba2899b</code></a>
Merge pull request <a
href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4830">#4830</a>
from Liam-DeVoe/from-regex-alphabet-collections</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/5e3cae290577cd842f495ff40cd899e02fa15b62"><code>5e3cae2</code></a>
Bump hypothesis version to 6.162.0 and update changelog</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/d92a798f4d8dabba29111e0cc726a92ea0a47937"><code>d92a798</code></a>
Merge pull request <a
href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4811">#4811</a>
from Zac-HD/claude/sleepy-keller-o5cUK</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/f5e473a52cc3604829aac8d9a87ba25c5880f673"><code>f5e473a</code></a>
claude: support Collection[str] alphabet in from_regex, unify alphabet
valida...</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/cbf124b97f8058d2142da0498dbb3f1a7d0ba797"><code>cbf124b</code></a>
Skip non-ns dtype construction at import on pandas < 2</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/8d0a004c0100579d511ba4ea014efdb2321a47b8"><code>8d0a004</code></a>
Address review: constrain constant-offset range, simplify tz
classification</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/8852abeebc192c1ea4386fd0fafe404384e0fe6d"><code>8852abe</code></a>
add new test</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/72d88bddbed3612a99a5a8a97bd57a7a950b2108"><code>72d88bd</code></a>
simplify tests</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/0addb3861bf9a508d895285a075eac0960c8e9e8"><code>0addb38</code></a>
Support timezone-aware datetime dtypes in hypothesis.extra.pandas</li>
<li>Additional commits viewable in <a
href="https://github.com/HypothesisWorks/hypothesis/compare/v6.155.7...v6.163.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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>1 file changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
| 63 | + | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
78 | | - | |
| 78 | + | |
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
| |||
0 commit comments