jupyter-server / enterprise_gateway

A lightweight, multi-tenant, scalable and secure gateway that enables Jupyter Notebooks to share resources across distributed clusters such as Apache Spark, Kubernetes and others.
https://jupyter-enterprise-gateway.readthedocs.io/en/latest/
Other
615 stars 221 forks source link

Bump ruff from 0.0.189 to 0.0.223 #1238

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps ruff from 0.0.189 to 0.0.223.

Release notes

Sourced from ruff's releases.

v0.0.223

What's Changed

New Contributors

Full Changelog: https://github.com/charliermarsh/ruff/compare/v0.0.222...v0.0.223

v0.0.222

What's Changed

New Contributors

Full Changelog: https://github.com/charliermarsh/ruff/compare/v0.0.221...v0.0.222

v0.0.221

What's Changed

... (truncated)

Changelog

Sourced from ruff's changelog.

Breaking Changes

0.0.222

--max-complexity has been removed from the CLI (#1877)

The McCabe plugin's --max-complexity setting has been removed from the CLI, for consistency with the treatment of other, similar settings.

To set the maximum complexity, use the max-complexity property in your pyproject.toml file, like so:

[tool.ruff.mccabe]
max-complexity = 10

0.0.181

Files excluded by .gitignore are now ignored (#1234)

Ruff will now avoid checking files that are excluded by .ignore, .gitignore, .git/info/exclude, and global gitignore files. This behavior is powered by the ignore crate, and is applied in addition to Ruff's built-in exclude system.

To disable this behavior, set respect-gitignore = false in your pyproject.toml file.

Note that hidden files (i.e., files and directories prefixed with a .) are not ignored by default.

0.0.178

Configuration files are now resolved hierarchically (#1190)

pyproject.toml files are now resolved hierarchically, such that for each Python file, we find the first pyproject.toml file in its path, and use that to determine its lint settings.

See the README for more.

Commits
  • 3a3a5fc Remove -dev suffix from flake8_to_ruff
  • e8577d5 Bump version to 0.0.223
  • bcb1e6b Add flake8-commas to the README
  • 1540352 Avoid triggering SIM117 for async with statements (#1903)
  • cb4f305 Lock stdout once when printing diagnostics (#1901)
  • d71a615 Buffer diagnostic writes to stdout (#1900)
  • dfc2a34 Remove rogue println
  • 7608087 Don't require docstrings for setters and deleters (#1899)
  • 228f033 Skip noqa checker if no diagnostics are found (#1898)
  • d75d6d7 refactor: Split CliSettings from Settings
  • Additional commits viewable in compare view


Dependabot compatibility score

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 commands and options
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 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)
kevin-bates commented 1 year ago

@lresende - I think we should address the errors that this change raises as part of this PR, do you agree?