Skip to content

Commit

Permalink
Bump the dependencies group with 3 updates (#145)
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 3 updates:
[black](https://github.com/psf/black),
[flake8](https://github.com/pycqa/flake8) and
[mypy](https://github.com/python/mypy).

Updates `black` from 24.4.2 to 24.8.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/psf/black/releases">black's
releases</a>.</em></p>
<blockquote>
<h2>24.8.0</h2>
<h3>Stable style</h3>
<ul>
<li>Fix crash when <code># fmt: off</code> is used before a closing
parenthesis or bracket. (<a
href="https://github.com/psf/black/issues/4363">#4363</a>)</li>
</ul>
<h3>Packaging</h3>
<ul>
<li>Packaging metadata updated: docs are explictly linked, the issue
tracker is now also
linked. This improves the PyPI listing for Black. (<a
href="https://github.com/psf/black/issues/4345">#4345</a>)</li>
</ul>
<h3>Parser</h3>
<ul>
<li>Fix regression where Black failed to parse a multiline f-string
containing another
multiline string (<a
href="https://github.com/psf/black/issues/4339">#4339</a>)</li>
<li>Fix regression where Black failed to parse an escaped single quote
inside an f-string
(<a
href="https://github.com/psf/black/issues/4401">#4401</a>)</li>
<li>Fix bug with Black incorrectly parsing empty lines with a backslash
(<a
href="https://github.com/psf/black/issues/4343">#4343</a>)</li>
<li>Fix bugs with Black's tokenizer not handling <code>\{</code> inside
f-strings very well (<a
href="https://github.com/psf/black/issues/4422">#4422</a>)</li>
<li>Fix incorrect line numbers in the tokenizer for certain tokens
within f-strings
(<a
href="https://github.com/psf/black/issues/4423">#4423</a>)</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Improve performance when a large directory is listed in
<code>.gitignore</code> (<a
href="https://github.com/psf/black/issues/4415">#4415</a>)</li>
</ul>
<h3><em>Blackd</em></h3>
<ul>
<li>Fix blackd (and all extras installs) for docker container (<a
href="https://github.com/psf/black/issues/4357">#4357</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/psf/black/blob/main/CHANGES.md">black's
changelog</a>.</em></p>
<blockquote>
<h2>24.8.0</h2>
<h3>Stable style</h3>
<ul>
<li>Fix crash when <code># fmt: off</code> is used before a closing
parenthesis or bracket. (<a
href="https://github.com/psf/black/issues/4363">#4363</a>)</li>
</ul>
<h3>Packaging</h3>
<ul>
<li>Packaging metadata updated: docs are explictly linked, the issue
tracker is now also
linked. This improves the PyPI listing for Black. (<a
href="https://github.com/psf/black/issues/4345">#4345</a>)</li>
</ul>
<h3>Parser</h3>
<ul>
<li>Fix regression where Black failed to parse a multiline f-string
containing another
multiline string (<a
href="https://github.com/psf/black/issues/4339">#4339</a>)</li>
<li>Fix regression where Black failed to parse an escaped single quote
inside an f-string
(<a
href="https://github.com/psf/black/issues/4401">#4401</a>)</li>
<li>Fix bug with Black incorrectly parsing empty lines with a backslash
(<a
href="https://github.com/psf/black/issues/4343">#4343</a>)</li>
<li>Fix bugs with Black's tokenizer not handling <code>\{</code> inside
f-strings very well (<a
href="https://github.com/psf/black/issues/4422">#4422</a>)</li>
<li>Fix incorrect line numbers in the tokenizer for certain tokens
within f-strings
(<a
href="https://github.com/psf/black/issues/4423">#4423</a>)</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Improve performance when a large directory is listed in
<code>.gitignore</code> (<a
href="https://github.com/psf/black/issues/4415">#4415</a>)</li>
</ul>
<h3><em>Blackd</em></h3>
<ul>
<li>Fix blackd (and all extras installs) for docker container (<a
href="https://github.com/psf/black/issues/4357">#4357</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/psf/black/commit/b965c2a5026f8ba399283ba3e01898b012853c79"><code>b965c2a</code></a>
Prepare release 24.8.0 (<a
href="https://github.com/psf/black/issues/4426">#4426</a>)</li>
<li><a
href="https://github.com/psf/black/commit/9ccf279a17ff19cc51f62c60fc88ba46e615d202"><code>9ccf279</code></a>
Document <code>find_project_root</code> ignoring
<code>pyproject.toml</code> without <code>[tool.black]</code>...</li>
<li><a
href="https://github.com/psf/black/commit/14b6e619704e6d81749f0a23060750ee0a5fcc40"><code>14b6e61</code></a>
fix: Enhace black efficiently to skip directories listed in .gitignore
(<a
href="https://github.com/psf/black/issues/4415">#4415</a>)</li>
<li><a
href="https://github.com/psf/black/commit/b1c4dd96d769cb3ac3c8fc057e8dc60907b84c17"><code>b1c4dd9</code></a>
fix: respect braces better in f-string parsing (<a
href="https://github.com/psf/black/issues/4422">#4422</a>)</li>
<li><a
href="https://github.com/psf/black/commit/4b4ae43e8b66a2eab2d41a73364745c2a4570287"><code>4b4ae43</code></a>
Fix incorrect linenos on fstring tokens with escaped newlines (<a
href="https://github.com/psf/black/issues/4423">#4423</a>)</li>
<li><a
href="https://github.com/psf/black/commit/7fa1faf83af513e09c44e029da573c6b0b2bd570"><code>7fa1faf</code></a>
docs: fix the installation command of extra for blackd (<a
href="https://github.com/psf/black/issues/4413">#4413</a>)</li>
<li><a
href="https://github.com/psf/black/commit/8827accf560c7be418000962565f1fd6fa7b01cb"><code>8827acc</code></a>
Bump sphinx from 7.3.7 to 7.4.0 in /docs (<a
href="https://github.com/psf/black/issues/4404">#4404</a>)</li>
<li><a
href="https://github.com/psf/black/commit/b0da11d370adb5730fd45594cc89b1dc816786ea"><code>b0da11d</code></a>
Bump furo from 2024.5.6 to 2024.7.18 in /docs (<a
href="https://github.com/psf/black/issues/4409">#4409</a>)</li>
<li><a
href="https://github.com/psf/black/commit/721dff549362f54930ecc038218dcc40e599a875"><code>721dff5</code></a>
fix: avoid formatting backslash strings inside f-strings (<a
href="https://github.com/psf/black/issues/4401">#4401</a>)</li>
<li><a
href="https://github.com/psf/black/commit/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0"><code>7e2afc9</code></a>
Update <code>actions/checkout</code> to v4 to stop node deprecation
warnings (<a
href="https://github.com/psf/black/issues/4379">#4379</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/psf/black/compare/24.4.2...24.8.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `flake8` from 7.1.0 to 7.1.1
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyCQA/flake8/commit/cf1542cefa3e766670b2066dd75c4571d682a649"><code>cf1542c</code></a>
Release 7.1.1</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/939ea3d8d9d5d7d9f348420036af52df74f5ca09"><code>939ea3d</code></a>
Merge pull request <a
href="https://github.com/pycqa/flake8/issues/1949">#1949</a>
from stephenfin/issue-1948</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/bdcd5c2c0afadaf7c92a4b26d96055cecdd38cf3"><code>bdcd5c2</code></a>
Handle escaped braces in f-strings</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/2a811cc4d2aaed3e8eb5a9f04f08ccc8af7c0791"><code>2a811cc</code></a>
Merge pull request <a
href="https://github.com/pycqa/flake8/issues/1946">#1946</a>
from Viicos/patch-1</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/10314ad9e5236f1ddf70cb25c2854c93c0840b66"><code>10314ad</code></a>
Fix wording of plugins documentation</li>
<li>See full diff in <a
href="https://github.com/pycqa/flake8/compare/7.1.0...7.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `mypy` from 1.11.0 to 1.11.1
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/mypy/commit/570b90a7a368f04c64f60af339d0ac1808c49c15"><code>570b90a</code></a>
Bump version to 1.11</li>
<li><a
href="https://github.com/python/mypy/commit/b3a102ef31f63a8a8ba32c8dbe160ddef3c43054"><code>b3a102e</code></a>
Fix <code>RawExpressionType.accept</code> crash with
<code>--cache-fine-grained</code> (<a
href="https://github.com/python/mypy/issues/17588">#17588</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/aec04c74488d46a81a95ed3553b8e953a6ec59a7"><code>aec04c7</code></a>
Fix PEP 604 isinstance caching (<a
href="https://github.com/python/mypy/issues/17563">#17563</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/cb44e4d8f18b9bc874f1076b33eec7ad67de165c"><code>cb44e4d</code></a>
Fix <code>typing.TypeAliasType</code> being undefined on python &lt;
3.12 (<a
href="https://github.com/python/mypy/issues/17558">#17558</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/6cf9180e1411dab2ee91b57374f696d391eb24f4"><code>6cf9180</code></a>
Fix types.GenericAlias lookup crash (<a
href="https://github.com/python/mypy/issues/17543">#17543</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/64c1ebf7cff51c13b1771174e3bb6bce9fe0d5dc"><code>64c1ebf</code></a>
Bump version to 1.11.1+dev</li>
<li>See full diff in <a
href="https://github.com/python/mypy/compare/v1.11...v1.11.1">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 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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Aug 5, 2024
1 parent f3f0759 commit 88d252e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ dependencies = [
[project.optional-dependencies]
dev = [
"bandit[toml]==1.7.9",
"black==24.4.2",
"black==24.8.0",
"flake8-bugbear==24.4.26",
"flake8-builtins==2.5.0",
"flake8-comprehensions==3.15.0",
"flake8-docstrings==1.7.0",
"flake8-encodings[classes]==0.5.1",
"flake8-return==1.2.0",
"flake8-simplify==0.21.0",
"flake8==7.1.0",
"flake8==7.1.1",
"isort==5.13.2",
"mypy==1.11.0",
"mypy==1.11.1",
"pep8-naming==0.14.1",
"pytest==8.3.2",
"types-PyYAML==6.0.12.20240724",
Expand Down

0 comments on commit 88d252e

Please sign in to comment.