chore(deps-dev): Bump ruff from 0.2.0 to 0.3.0 in /schemas (#10358)
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.2.0 to 0.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/releases">ruff's releases</a>.</em></p> <blockquote> <h2>v0.3.0</h2> <p>This release introduces the new Ruff formatter 2024.2 style and adds a new lint rule to detect invalid formatter suppression comments.</p> <h2>Changes</h2> <h3>Preview features</h3> <ul> <li>[<code>flake8-bandit</code>] Remove suspicious-lxml-import (<code>S410</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10154">#10154</a>)</li> <li>[<code>pycodestyle</code>] Allow <code>os.environ</code> modifications between imports (<code>E402</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10066">#10066</a>)</li> <li>[<code>pycodestyle</code>] Don't warn about a single whitespace character before a comma in a tuple (<code>E203</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10094">#10094</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>eradicate</code>] Detect commented out <code>case</code> statements (<code>ERA001</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10055">#10055</a>)</li> <li>[<code>eradicate</code>] Detect single-line code for <code>try:</code>, <code>except:</code>, etc. (<code>ERA001</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10057">#10057</a>)</li> <li>[<code>flake8-boolean-trap</code>] Allow boolean positionals in <code>__post_init__</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/10027">#10027</a>)</li> <li>[<code>flake8-copyright</code>] Allow © in copyright notices (<a href="https://redirect.github.com/astral-sh/ruff/pull/10065">#10065</a>)</li> <li>[<code>isort</code>]: Use one blank line after imports in typing stub files (<a href="https://redirect.github.com/astral-sh/ruff/pull/9971">#9971</a>)</li> <li>[<code>pylint</code>] New Rule <code>dict-iter-missing-items</code> (<code>PLE1141</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/9845">#9845</a>)</li> <li>[<code>pylint</code>] Ignore <code>sys.version</code> and <code>sys.platform</code> (<code>PLR1714</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10054">#10054</a>)</li> <li>[<code>pyupgrade</code>] Detect literals with unary operators (<code>UP018</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10060">#10060</a>)</li> <li>[<code>ruff</code>] Expand rule for <code>list(iterable).pop(0)</code> idiom (<code>RUF015</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10148">#10148</a>)</li> </ul> <h3>Formatter</h3> <p>This release introduces the Ruff 2024.2 style, stabilizing the following changes:</p> <ul> <li>Prefer splitting the assignment's value over the target or type annotation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8943">#8943</a>)</li> <li>Remove blank lines before class docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/9154">#9154</a>)</li> <li>Wrap multiple context managers in <code>with</code> parentheses when targeting Python 3.9 or newer (<a href="https://redirect.github.com/astral-sh/ruff/pull/9222">#9222</a>)</li> <li>Add a blank line after nested classes with a dummy body (<code>...</code>) in typing stub files (<a href="https://redirect.github.com/astral-sh/ruff/pull/9155">#9155</a>)</li> <li>Reduce vertical spacing for classes and functions with a dummy (<code>...</code>) body (<a href="https://redirect.github.com/astral-sh/ruff/issues/7440">#7440</a>, <a href="https://redirect.github.com/astral-sh/ruff/pull/9240">#9240</a>)</li> <li>Add a blank line after the module docstring (<a href="https://redirect.github.com/astral-sh/ruff/pull/8283">#8283</a>)</li> <li>Parenthesize long type hints in assignments (<a href="https://redirect.github.com/astral-sh/ruff/pull/9210">#9210</a>)</li> <li>Preserve indent for single multiline-string call-expressions (<a href="https://redirect.github.com/astral-sh/ruff/pull/9637">#9673</a>)</li> <li>Normalize hex escape and unicode escape sequences (<a href="https://redirect.github.com/astral-sh/ruff/pull/9280">#9280</a>)</li> <li>Format module docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/9725">#9725</a>)</li> </ul> <h3>CLI</h3> <ul> <li>Explicitly disallow <code>extend</code> as part of a <code>--config</code> flag (<a href="https://redirect.github.com/astral-sh/ruff/pull/10135">#10135</a>)</li> <li>Remove <code>build</code> from the default exclusion list (<a href="https://redirect.github.com/astral-sh/ruff/pull/10093">#10093</a>)</li> <li>Deprecate <code>ruff <path></code>, <code>ruff --explain</code>, <code>ruff --clean</code>, and <code>ruff --generate-shell-completion</code> in favor of <code>ruff check <path></code>, <code>ruff rule</code>, <code>ruff clean</code>, and <code>ruff generate-shell-completion</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/10169">#10169</a>)</li> <li>Remove the deprecated CLI option <code>--format</code> from <code>ruff rule</code> and <code>ruff linter</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/10170">#10170</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-bugbear</code>] Avoid adding default initializers to stubs (<code>B006</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10152">#10152</a>)</li> <li>[<code>flake8-type-checking</code>] Respect runtime-required decorators for function signatures (<a href="https://redirect.github.com/astral-sh/ruff/pull/10091">#10091</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's changelog</a>.</em></p> <blockquote> <h2>0.3.0</h2> <p>This release introduces the new Ruff formatter 2024.2 style and adds a new lint rule to detect invalid formatter suppression comments.</p> <h3>Preview features</h3> <ul> <li>[<code>flake8-bandit</code>] Remove suspicious-lxml-import (<code>S410</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10154">#10154</a>)</li> <li>[<code>pycodestyle</code>] Allow <code>os.environ</code> modifications between imports (<code>E402</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10066">#10066</a>)</li> <li>[<code>pycodestyle</code>] Don't warn about a single whitespace character before a comma in a tuple (<code>E203</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10094">#10094</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>eradicate</code>] Detect commented out <code>case</code> statements (<code>ERA001</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10055">#10055</a>)</li> <li>[<code>eradicate</code>] Detect single-line code for <code>try:</code>, <code>except:</code>, etc. (<code>ERA001</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10057">#10057</a>)</li> <li>[<code>flake8-boolean-trap</code>] Allow boolean positionals in <code>__post_init__</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/10027">#10027</a>)</li> <li>[<code>flake8-copyright</code>] Allow © in copyright notices (<a href="https://redirect.github.com/astral-sh/ruff/pull/10065">#10065</a>)</li> <li>[<code>isort</code>]: Use one blank line after imports in typing stub files (<a href="https://redirect.github.com/astral-sh/ruff/pull/9971">#9971</a>)</li> <li>[<code>pylint</code>] New Rule <code>dict-iter-missing-items</code> (<code>PLE1141</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/9845">#9845</a>)</li> <li>[<code>pylint</code>] Ignore <code>sys.version</code> and <code>sys.platform</code> (<code>PLR1714</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10054">#10054</a>)</li> <li>[<code>pyupgrade</code>] Detect literals with unary operators (<code>UP018</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10060">#10060</a>)</li> <li>[<code>ruff</code>] Expand rule for <code>list(iterable).pop(0)</code> idiom (<code>RUF015</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10148">#10148</a>)</li> </ul> <h3>Formatter</h3> <p>This release introduces the Ruff 2024.2 style, stabilizing the following changes:</p> <ul> <li>Prefer splitting the assignment's value over the target or type annotation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8943">#8943</a>)</li> <li>Remove blank lines before class docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/9154">#9154</a>)</li> <li>Wrap multiple context managers in <code>with</code> parentheses when targeting Python 3.9 or newer (<a href="https://redirect.github.com/astral-sh/ruff/pull/9222">#9222</a>)</li> <li>Add a blank line after nested classes with a dummy body (<code>...</code>) in typing stub files (<a href="https://redirect.github.com/astral-sh/ruff/pull/9155">#9155</a>)</li> <li>Reduce vertical spacing for classes and functions with a dummy (<code>...</code>) body (<a href="https://redirect.github.com/astral-sh/ruff/issues/7440">#7440</a>, <a href="https://redirect.github.com/astral-sh/ruff/pull/9240">#9240</a>)</li> <li>Add a blank line after the module docstring (<a href="https://redirect.github.com/astral-sh/ruff/pull/8283">#8283</a>)</li> <li>Parenthesize long type hints in assignments (<a href="https://redirect.github.com/astral-sh/ruff/pull/9210">#9210</a>)</li> <li>Preserve indent for single multiline-string call-expressions (<a href="https://redirect.github.com/astral-sh/ruff/pull/9637">#9673</a>)</li> <li>Normalize hex escape and unicode escape sequences (<a href="https://redirect.github.com/astral-sh/ruff/pull/9280">#9280</a>)</li> <li>Format module docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/9725">#9725</a>)</li> </ul> <h3>CLI</h3> <ul> <li>Explicitly disallow <code>extend</code> as part of a <code>--config</code> flag (<a href="https://redirect.github.com/astral-sh/ruff/pull/10135">#10135</a>)</li> <li>Remove <code>build</code> from the default exclusion list (<a href="https://redirect.github.com/astral-sh/ruff/pull/10093">#10093</a>)</li> <li>Deprecate <code>ruff <path></code>, <code>ruff --explain</code>, <code>ruff --clean</code>, and <code>ruff --generate-shell-completion</code> in favor of <code>ruff check <path></code>, <code>ruff rule</code>, <code>ruff clean</code>, and <code>ruff generate-shell-completion</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/10169">#10169</a>)</li> <li>Remove the deprecated CLI option <code>--format</code> from <code>ruff rule</code> and <code>ruff linter</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/10170">#10170</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-bugbear</code>] Avoid adding default initializers to stubs (<code>B006</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10152">#10152</a>)</li> <li>[<code>flake8-type-checking</code>] Respect runtime-required decorators for function signatures (<a href="https://redirect.github.com/astral-sh/ruff/pull/10091">#10091</a>)</li> <li>[<code>pycodestyle</code>] Mark fixes overlapping with a multiline string as unsafe (<code>W293</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/10049">#10049</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="b53118ed00
"><code>b53118e</code></a> Bump version to v0.3.0 (<a href="https://redirect.github.com/astral-sh/ruff/issues/10151">#10151</a>)</li> <li><a href="52f4c1e41b
"><code>52f4c1e</code></a> Remove deprecated CLI option <code>--format</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/10170">#10170</a>)</li> <li><a href="eceffe74a0
"><code>eceffe7</code></a> Deprecate <code>ruff \<path></code> <code>ruff --explain</code>, <code>ruff --clean</code> and `ruff --generate...</li> <li><a href="c73c497477
"><code>c73c497</code></a> [<code>pydocstyle</code>] Trim whitespace when removing blank lines after section (`D413...</li> <li><a href="c9c98c4fe3
"><code>c9c98c4</code></a> Fix mkdocs local link (<a href="https://redirect.github.com/astral-sh/ruff/issues/10167">#10167</a>)</li> <li><a href="72ccb34ba6
"><code>72ccb34</code></a> Fix ecosystem check for indico (<a href="https://redirect.github.com/astral-sh/ruff/issues/10164">#10164</a>)</li> <li><a href="dcc92f50cf
"><code>dcc92f5</code></a> Update black tests (<a href="https://redirect.github.com/astral-sh/ruff/issues/10166">#10166</a>)</li> <li><a href="a6f32ddc5e
"><code>a6f32dd</code></a> Ruff 2024.2 style (<a href="https://redirect.github.com/astral-sh/ruff/issues/9639">#9639</a>)</li> <li><a href="0293908b71
"><code>0293908</code></a> Implement RUF028 to detect useless formatter suppression comments (<a href="https://redirect.github.com/astral-sh/ruff/issues/9899">#9899</a>)</li> <li><a href="36bc725eaa
"><code>36bc725</code></a> [<code>flake8-bugbear</code>] Avoid adding default initializers to stubs (<code>B006</code>) (<a href="https://redirect.github.com/astral-sh/ruff/issues/10152">#10152</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ruff/compare/v0.2.0...v0.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ruff&package-manager=pip&previous-version=0.2.0&new-version=0.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Родитель
d845037728
Коммит
bbaf5f8300
|
@ -868,28 +868,28 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
|||
|
||||
[[package]]
|
||||
name = "ruff"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
description = "An extremely fast Python linter and code formatter, written in Rust."
|
||||
optional = false
|
||||
python-versions = ">=3.7"
|
||||
files = [
|
||||
{file = "ruff-0.2.0-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:638ea3294f800d18bae84a492cb5a245c8d29c90d19a91d8e338937a4c27fca0"},
|
||||
{file = "ruff-0.2.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3ff35433fcf4dff6d610738712152df6b7d92351a1bde8e00bd405b08b3d5759"},
|
||||
{file = "ruff-0.2.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf9faafbdcf4f53917019f2c230766da437d4fd5caecd12ddb68bb6a17d74399"},
|
||||
{file = "ruff-0.2.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8153a3e4128ed770871c47545f1ae7b055023e0c222ff72a759f5a341ee06483"},
|
||||
{file = "ruff-0.2.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e8a75a98ae989a27090e9c51f763990ad5bbc92d20626d54e9701c7fe597f399"},
|
||||
{file = "ruff-0.2.0-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:87057dd2fdde297130ff99553be8549ca38a2965871462a97394c22ed2dfc19d"},
|
||||
{file = "ruff-0.2.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d232f99d3ab00094ebaf88e0fb7a8ccacaa54cc7fa3b8993d9627a11e6aed7a"},
|
||||
{file = "ruff-0.2.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d3c641f95f435fc6754b05591774a17df41648f0daf3de0d75ad3d9f099ab92"},
|
||||
{file = "ruff-0.2.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3826fb34c144ef1e171b323ed6ae9146ab76d109960addca730756dc19dc7b22"},
|
||||
{file = "ruff-0.2.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:eceab7d85d09321b4de18b62d38710cf296cb49e98979960a59c6b9307c18cfe"},
|
||||
{file = "ruff-0.2.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:30ad74687e1f4a9ff8e513b20b82ccadb6bd796fe5697f1e417189c5cde6be3e"},
|
||||
{file = "ruff-0.2.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:a7e3818698f8460bd0f8d4322bbe99db8327e9bc2c93c789d3159f5b335f47da"},
|
||||
{file = "ruff-0.2.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:edf23041242c48b0d8295214783ef543847ef29e8226d9f69bf96592dba82a83"},
|
||||
{file = "ruff-0.2.0-py3-none-win32.whl", hash = "sha256:e155147199c2714ff52385b760fe242bb99ea64b240a9ffbd6a5918eb1268843"},
|
||||
{file = "ruff-0.2.0-py3-none-win_amd64.whl", hash = "sha256:ba918e01cdd21e81b07555564f40d307b0caafa9a7a65742e98ff244f5035c59"},
|
||||
{file = "ruff-0.2.0-py3-none-win_arm64.whl", hash = "sha256:3fbaff1ba9564a2c5943f8f38bc221f04bac687cc7485e45237579fee7ccda79"},
|
||||
{file = "ruff-0.2.0.tar.gz", hash = "sha256:63856b91837606c673537d2889989733d7dffde553828d3b0f0bacfa6def54be"},
|
||||
{file = "ruff-0.3.0-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:7deb528029bacf845bdbb3dbb2927d8ef9b4356a5e731b10eef171e3f0a85944"},
|
||||
{file = "ruff-0.3.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:e1e0d4381ca88fb2b73ea0766008e703f33f460295de658f5467f6f229658c19"},
|
||||
{file = "ruff-0.3.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f7dbba46e2827dfcb0f0cc55fba8e96ba7c8700e0a866eb8cef7d1d66c25dcb"},
|
||||
{file = "ruff-0.3.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:23dbb808e2f1d68eeadd5f655485e235c102ac6f12ad31505804edced2a5ae77"},
|
||||
{file = "ruff-0.3.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ef655c51f41d5fa879f98e40c90072b567c666a7114fa2d9fe004dffba00932"},
|
||||
{file = "ruff-0.3.0-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:d0d3d7ef3d4f06433d592e5f7d813314a34601e6c5be8481cccb7fa760aa243e"},
|
||||
{file = "ruff-0.3.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b08b356d06a792e49a12074b62222f9d4ea2a11dca9da9f68163b28c71bf1dd4"},
|
||||
{file = "ruff-0.3.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9343690f95710f8cf251bee1013bf43030072b9f8d012fbed6ad702ef70d360a"},
|
||||
{file = "ruff-0.3.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1f3ed501a42f60f4dedb7805fa8d4534e78b4e196f536bac926f805f0743d49"},
|
||||
{file = "ruff-0.3.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:cc30a9053ff2f1ffb505a585797c23434d5f6c838bacfe206c0e6cf38c921a1e"},
|
||||
{file = "ruff-0.3.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:5da894a29ec018a8293d3d17c797e73b374773943e8369cfc50495573d396933"},
|
||||
{file = "ruff-0.3.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:755c22536d7f1889be25f2baf6fedd019d0c51d079e8417d4441159f3bcd30c2"},
|
||||
{file = "ruff-0.3.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:dd73fe7f4c28d317855da6a7bc4aa29a1500320818dd8f27df95f70a01b8171f"},
|
||||
{file = "ruff-0.3.0-py3-none-win32.whl", hash = "sha256:19eacceb4c9406f6c41af806418a26fdb23120dfe53583df76d1401c92b7c14b"},
|
||||
{file = "ruff-0.3.0-py3-none-win_amd64.whl", hash = "sha256:128265876c1d703e5f5e5a4543bd8be47c73a9ba223fd3989d4aa87dd06f312f"},
|
||||
{file = "ruff-0.3.0-py3-none-win_arm64.whl", hash = "sha256:e3a4a6d46aef0a84b74fcd201a4401ea9a6cd85614f6a9435f2d33dd8cefbf83"},
|
||||
{file = "ruff-0.3.0.tar.gz", hash = "sha256:0886184ba2618d815067cf43e005388967b67ab9c80df52b32ec1152ab49f53a"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -997,4 +997,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
|
|||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.11"
|
||||
content-hash = "f858910b9c2c14f9b3ece0ae41277dc0c98d7b41a3a94054dec040369a80200a"
|
||||
content-hash = "22ba6266d1aed1c6f3a7366f176888c9497bb76261bf5e9e77675b8b07968821"
|
||||
|
|
|
@ -13,7 +13,7 @@ pydantic = "^1.10.7"
|
|||
polyfactory = "^2.7.2"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
ruff = ">=0.0.269,<0.2.1"
|
||||
ruff = ">=0.0.269,<0.3.1"
|
||||
black = "^23.3.0"
|
||||
pytest = "^7.3.1"
|
||||
twine = "^4.0.2"
|
||||
|
|
Загрузка…
Ссылка в новой задаче