Commit 3a3943e
authored
Bump the minor group with 5 updates (#55)
Bumps the minor group with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [markdown](https://github.com/Python-Markdown/markdown) | `3.7` |
`3.8` |
| [flake8](https://github.com/pycqa/flake8) | `7.1.1` | `7.2.0` |
| [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [types-markdown](https://github.com/typeshed-internal/stub_uploader) |
`3.7.0.20241204` | `3.8.0.20250413` |
| [setuptools-scm[toml]](https://github.com/pypa/setuptools-scm) |
`8.1.0` | `8.2.0` |
Updates `markdown` from 3.7 to 3.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Python-Markdown/markdown/releases">markdown's
releases</a>.</em></p>
<blockquote>
<h2>Release 3.8</h2>
<h3>Changed</h3>
<ul>
<li>DRY fix in <code>abbr</code> extension by introducing method
<code>create_element</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1483">#1483</a>).</li>
<li>Clean up test directory by removing some redundant tests and port
non-redundant cases to the newer test framework.</li>
<li>Improved performance of the raw HTML post-processor (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1510">#1510</a>).</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Backslash Unescape IDs set via <code>attr_list</code> on
<code>toc</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1493">#1493</a>).</li>
<li>Ensure <code>md_in_html</code> processes content inside
"markdown" blocks as they are
parsed outside of "markdown" blocks to keep things more
consistent for
third-party extensions (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1503">#1503</a>).</li>
<li><code>md_in_html</code> handle tags within inline code blocks better
(<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1075">#1075</a>).</li>
<li><code>md_in_html</code> fix handling of one-liner block HTML
handling (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1074">#1074</a>).</li>
<li>Ensure <code><center></code> is treated like a block-level
element (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1481">#1481</a>).</li>
<li>Ensure that <code>abbr</code> extension respects
<code>AtomicString</code> and does not process
perceived abbreviations in these strings (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1512">#1512</a>).</li>
<li>Ensure <code>smarty</code> extension correctly renders nested
closing quotes (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1514">#1514</a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md">markdown's
changelog</a>.</em></p>
<blockquote>
<p>title: Changelog
toc_depth: 2</p>
<h1>Python-Markdown Changelog</h1>
<p>All notable changes to this project will be documented in this
file.</p>
<p>The format is based on <a
href="https://keepachangelog.com/en/1.1.0/">Keep a Changelog</a>,
and this project adheres to <a
href="https://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.
See the <a
href="https://github.com/Python-Markdown/markdown/blob/master/docs/contributing.md">Contributing
Guide</a> for details.</p>
<h2>[3.8.0] - 2025-04-09</h2>
<h3>Changed</h3>
<ul>
<li>DRY fix in <code>abbr</code> extension by introducing method
<code>create_element</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1483">#1483</a>).</li>
<li>Clean up test directory by removing some redundant tests and port
non-redundant cases to the newer test framework.</li>
<li>Improved performance of the raw HTML post-processor (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1510">#1510</a>).</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Backslash Unescape IDs set via <code>attr_list</code> on
<code>toc</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1493">#1493</a>).</li>
<li>Ensure <code>md_in_html</code> processes content inside
"markdown" blocks as they are
parsed outside of "markdown" blocks to keep things more
consistent for
third-party extensions (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1503">#1503</a>).</li>
<li><code>md_in_html</code> handle tags within inline code blocks better
(<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1075">#1075</a>).</li>
<li><code>md_in_html</code> fix handling of one-liner block HTML
handling (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1074">#1074</a>).</li>
<li>Ensure <code><center></code> is treated like a block-level
element (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1481">#1481</a>).</li>
<li>Ensure that <code>abbr</code> extension respects
<code>AtomicString</code> and does not process
perceived abbreviations in these strings (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1512">#1512</a>).</li>
<li>Ensure <code>smarty</code> extension correctly renders nested
closing quotes (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1514">#1514</a>).</li>
</ul>
<h2>[3.7.0] - 2024-08-16</h2>
<h3>Changed</h3>
<ul>
<li>
<p>Refactor <code>abbr</code> Extension</p>
<p>A new <code>AbbrTreeprocessor</code> has been introduced, which
replaces the now deprecated
<code>AbbrInlineProcessor</code>. Abbreviation processing now happens
after Attribute Lists,
avoiding a conflict between the two extensions (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1460">#1460</a>).</p>
<p>The <code>AbbrPreprocessor</code> class has been renamed to
<code>AbbrBlockprocessor</code>, which
better reflects what it is. <code>AbbrPreprocessor</code> has been
deprecated.</p>
<p>A call to <code>Markdown.reset()</code> now clears all previously
defined abbreviations.</p>
<p>Abbreviations are now sorted by length before executing
<code>AbbrTreeprocessor</code>
to ensure that multi-word abbreviations are implemented even if an
abbreviation</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/b34e1d03387be771aa626241fe56f8f0c34243f2"><code>b34e1d0</code></a>
Bump version to 3.8</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/e6b71632726c049ab9a7a1b42e816a67f422064b"><code>e6b7163</code></a>
Update deploy workflow to normalize version</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/bd67d4862b388c7c2dd1ae90635c633472c2c77c"><code>bd67d48</code></a>
Improve changelog validation</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/e912575a903215ebafaeb0fecbdad079d998b9ba"><code>e912575</code></a>
Fix incorrect TOC list structure in docs</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/42d4b4336e97485b96c1e4e9fcdb4e8df2501217"><code>42d4b43</code></a>
Fix CI badge in README</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/1caf02892487cead069cb0c4bcdd1e876ca6b590"><code>1caf028</code></a>
Optimize raw HTML post-processor (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1510">#1510</a>)</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/f6cfc5cca3dd2c313d2fa547b7c88dac656ae506"><code>f6cfc5c</code></a>
Use PEP 639 license expressions in project metadata</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/9c6e39ace5e928f37854b3bf1010b209a79e2d63"><code>9c6e39a</code></a>
Add Python 3.13 and drop Python 3.8</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/7aae61bea185a4a5c0c48be2619ccc1d294aa381"><code>7aae61b</code></a>
Add special case for closing nested quotes</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/0ad5b0abf9560255cf9d24234f7de64c0411ab98"><code>0ad5b0a</code></a>
Abbr should respect AtomicStrings</li>
<li>Additional commits viewable in <a
href="https://github.com/Python-Markdown/markdown/compare/3.7...3.8">compare
view</a></li>
</ul>
</details>
<br />
Updates `flake8` from 7.1.1 to 7.2.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyCQA/flake8/commit/16f5f28a384f0781bebb37a08aa45e65b9526c50"><code>16f5f28</code></a>
Release 7.2.0</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/ebad305769bbf62d92901a1b9c9121c1b4fec00b"><code>ebad305</code></a>
Merge pull request <a
href="https://redirect.github.com/pycqa/flake8/issues/1974">#1974</a>
from PyCQA/update-plugins</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/d56d569ce40a623a17c212ea7f2b306714f27f31"><code>d56d569</code></a>
update versions of pycodestyle / pyflakes</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/a7e8f6250c23e71546ca4cc35322bc06fe90f9f4"><code>a7e8f62</code></a>
Merge pull request <a
href="https://redirect.github.com/pycqa/flake8/issues/1973">#1973</a>
from PyCQA/py39-plus</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/9d55ccdb729d1255b9cf09438b6073b05b9ce52c"><code>9d55ccd</code></a>
py39+</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/e492aeb385f87c0520c65d32747763209ed1da21"><code>e492aeb</code></a>
Merge pull request <a
href="https://redirect.github.com/pycqa/flake8/issues/1967">#1967</a>
from PyCQA/unnecessary-mocks</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/fa2ed7145cdf80fd983c2a436226a074f9a9d664"><code>fa2ed71</code></a>
remove a few unnecessary mocks in test_checker_manager</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/fffee8ba9dc5903484f99390e6c7f4bbef59bda7"><code>fffee8b</code></a>
Release 7.1.2</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/19001f77f3a8edccfd2d4c71e3c0fd7ed7fcb329"><code>19001f7</code></a>
Merge pull request <a
href="https://redirect.github.com/pycqa/flake8/issues/1966">#1966</a>
from PyCQA/limit-procs-to-file-count</li>
<li><a
href="https://github.com/PyCQA/flake8/commit/f35737a32d8283fd0d3456bd9919718ff2d1b077"><code>f35737a</code></a>
avoid starting unnecessary processes when file count is limited</li>
<li>See full diff in <a
href="https://github.com/pycqa/flake8/compare/7.1.1...7.2.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `mypy` from 1.14.1 to 1.15.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>Different Property Getter and Setter Types</h3>
<p>Mypy now supports using different types for property getter and
setter.</p>
<pre lang="python"><code>class A:
value: int
<pre><code>@Property
def f(self) -&gt; int:
return self.value
@f.setter
def f(self, x: str | int) -&gt; None:
try:
self.value = int(x)
except ValueError:
raise Exception(f&quot;'{x}' is not a valid value for 'f'&quot;)
</code></pre>
<p></code></pre></p>
<p>Contributed by Ivan Levkivskyi (PR <a
href="https://redirect.github.com/python/mypy/pull/18510">18510</a>)</p>
<h3>Selectively Disable Deprecated Warnings</h3>
<p>It's now possible to selectively disable warnings generated from
<a
href="https://docs.python.org/3/library/warnings.html#warnings.deprecated"><code>warnings.deprecated</code></a>
using the <a
href="https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-deprecated-calls-exclude"><code>--deprecated-calls-exclude</code></a>
option.</p>
<pre lang="python"><code># mypy --enable-error-code deprecated
# --deprecated-calls-exclude=foo.A
import foo
<p>foo.A().func() # OK, the deprecated warning is ignored</p>
<h1>file foo.py</h1>
<p>from typing_extensions import deprecated<br />
class A:<br />
<a
href="https://github.com/deprecated"><code>@deprecated</code></a>("Use
A.func2 instead")<br />
def func(self): pass<br />
</code></pre></p>
<p>Contributed by Marc Mueller (PR <a
href="https://redirect.github.com/python/mypy/pull/18641">18641</a>)</p>
<h2>Mypy 1.15</h2>
<p>We’ve just uploaded mypy 1.15 to the Python Package Index (<a
href="https://pypi.org/project/mypy/">PyPI</a>).</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/mypy/commit/9397454fb5aead107461b089e7cf190bf538d20a"><code>9397454</code></a>
remove +dev from version ahead of final release</li>
<li><a
href="https://github.com/python/mypy/commit/686b591a69db216f714ad50698db785f4ac63eb0"><code>686b591</code></a>
remove "unreleased" from 1.15 changelog entry</li>
<li><a
href="https://github.com/python/mypy/commit/cb4b243a5d9e03173e3e7275e5b92b98afaefb60"><code>cb4b243</code></a>
Various small updates to 1.15 changelog (<a
href="https://redirect.github.com/python/mypy/issues/18599">#18599</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/1a265024f901399c701a772e8c1f9e6e110f45e6"><code>1a26502</code></a>
Prepare changelog for 1.15 release (<a
href="https://redirect.github.com/python/mypy/issues/18583">#18583</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/d4515e4ad3eee6318744c64cf2eab0ea0b5b7562"><code>d4515e4</code></a>
Fix a few PR links in the changelog (<a
href="https://redirect.github.com/python/mypy/issues/18586">#18586</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/f83b6435b0c07a327f6b567dfb5e79ffa36708a2"><code>f83b643</code></a>
Add object self-type to tuple test fixture (<a
href="https://redirect.github.com/python/mypy/issues/18592">#18592</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/ebc2cb8befbadfc10b962af018b3fa3842d3fd87"><code>ebc2cb8</code></a>
Prevent crash on generic NamedTuple with unresolved typevar bound (<a
href="https://redirect.github.com/python/mypy/issues/18585">#18585</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/63c251e249e52256629dbe8b8334937a092f792d"><code>63c251e</code></a>
empty commit to trigger wheel rebuild</li>
<li><a
href="https://github.com/python/mypy/commit/c30573e7b95eef9d057ff42ebfd326438dac3c42"><code>c30573e</code></a>
Fix literal context for ternary expressions (for real) (<a
href="https://redirect.github.com/python/mypy/issues/18545">#18545</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/23d862dd6fbb905a69bcb31e88746dc7a1eb4a43"><code>23d862d</code></a>
Fix isinstance with explicit (non generic) type alias (<a
href="https://redirect.github.com/python/mypy/issues/18512">#18512</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/python/mypy/compare/v1.14.1...v1.15.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `types-markdown` from 3.7.0.20241204 to 3.8.0.20250413
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/typeshed-internal/stub_uploader/commits">compare
view</a></li>
</ul>
</details>
<br />
Updates `setuptools-scm[toml]` from 8.1.0 to 8.2.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/setuptools-scm/blob/main/CHANGELOG.md">setuptools-scm[toml]'s
changelog</a>.</em></p>
<blockquote>
<h2>v8.2.0</h2>
<h3>Added</h3>
<ul>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/960">#960</a>:
add a <code>--force-write-version-files</code> flag for the cli</li>
</ul>
<h3>Changed</h3>
<ul>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/950">#950</a>:
ensure to pass encodings to io usage</li>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/957">#957</a>:
add subprocess timeout control env var</li>
<li>add sp-repo-review pre-commit hook</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1018">#1018</a>:
allow non-normalized versions for semver</li>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1103">#1103</a>:
respect GIT_CEILING_DIRECTORIES when trying to find git toplevels</li>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1081">#1081</a>:
add name normalized pipx entrypoint</li>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1080">#1080</a>:
clean pdm from PYTHONPATH to protect mercurial</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/e554978c2fa77d187061ba2bfa2553b0a2d26a85"><code>e554978</code></a>
complete changelog to reasonable accuracy for quick release</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/260dcf09791193ed0f07f2026be0e7cb61ef370b"><code>260dcf0</code></a>
chore: scriv collect</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/836eb426d34f2f0eb149de0192da56e841f287b0"><code>836eb42</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1096">#1096</a>
from DimitriPapadopoulos/ruff_0.9.1</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/98b70785ab99ee32b6863c32d0fc844cd2c3dd95"><code>98b7078</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1106">#1106</a>
from Ecordonnier/eco/git-ceiling-directories</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/7d4e94c915077a06b6a419533e77ea919b6c45a1"><code>7d4e94c</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1104">#1104</a>
from jezdez/patch-1</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/0b82e5d134d6ddf118969319e30db9997f0acd75"><code>0b82e5d</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/979d79301da678d305c12e5c4bdee139705fcc14"><code>979d793</code></a>
respect GIT_CEILING_DIRECTORIES</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/68c6b2069576c6cbf2cf2e1b95b4e39656ffee4e"><code>68c6b20</code></a>
Add missing code block end.</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/9b6f0319c8f87342224150a482999953132c54bd"><code>9b6f031</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1102">#1102</a>
from paugier/error-message-env-var</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/2b0722fafa8b11b69a65073e13a00caf6b86a75b"><code>2b0722f</code></a>
Mention SETUPTOOLS_SCM_PRETEND_VERSION_FOR in error message</li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/setuptools-scm/compare/v8.1.0...v8.2.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 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>1 file changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
72 | | - | |
| 71 | + | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
0 commit comments