Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the deps group with 2 updates #343

Merged
merged 1 commit into from Dec 18, 2023
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2023

Bumps the deps group with 2 updates: black and ruff.

Updates black from 23.11.0 to 23.12.0

Release notes

Sourced from black's releases.

23.12.0

Highlights

It's almost 2024, which means it's time for a new edition of Black's stable style! Together with this release, we'll put out an alpha release 24.1a1 showcasing the draft 2024 stable style, which we'll finalize in the January release. Please try it out and share your feedback.

This release (23.12.0) will still produce the 2023 style. Most but not all of the changes in --preview mode will be in the 2024 stable style.

Stable style

  • Fix bug where # fmt: off automatically dedents when used with the --line-ranges option, even when it is not within the specified line range. (#4084)
  • Fix feature detection for parenthesized context managers (#4104)

Preview style

  • Prefer more equal signs before a break when splitting chained assignments (#4010)
  • Standalone form feed characters at the module level are no longer removed (#4021)
  • Additional cases of immediately nested tuples, lists, and dictionaries are now indented less (#4012)
  • Allow empty lines at the beginning of all blocks, except immediately before a docstring (#4060)
  • Fix crash in preview mode when using a short --line-length (#4086)
  • Keep suites consisting of only an ellipsis on their own lines if they are not functions or class definitions (#4066) (#4103)

Configuration

  • --line-ranges now skips Black's internal stability check in --safe mode. This avoids a crash on rare inputs that have many unformatted same-content lines. (#4034)

Packaging

  • Upgrade to mypy 1.7.1 (#4049) (#4069)
  • Faster compiled wheels are now available for CPython 3.12 (#4070)

Integrations

  • Enable 3.12 CI (#4035)
  • Build docker images in parallel (#4054)
  • Build docker images with 3.12 (#4055)
Changelog

Sourced from black's changelog.

23.12.0

Highlights

It's almost 2024, which means it's time for a new edition of Black's stable style! Together with this release, we'll put out an alpha release 24.1a1 showcasing the draft 2024 stable style, which we'll finalize in the January release. Please try it out and share your feedback.

This release (23.12.0) will still produce the 2023 style. Most but not all of the changes in --preview mode will be in the 2024 stable style.

Stable style

  • Fix bug where # fmt: off automatically dedents when used with the --line-ranges option, even when it is not within the specified line range. (#4084)
  • Fix feature detection for parenthesized context managers (#4104)

Preview style

  • Prefer more equal signs before a break when splitting chained assignments (#4010)
  • Standalone form feed characters at the module level are no longer removed (#4021)
  • Additional cases of immediately nested tuples, lists, and dictionaries are now indented less (#4012)
  • Allow empty lines at the beginning of all blocks, except immediately before a docstring (#4060)
  • Fix crash in preview mode when using a short --line-length (#4086)
  • Keep suites consisting of only an ellipsis on their own lines if they are not functions or class definitions (#4066) (#4103)

Configuration

  • --line-ranges now skips Black's internal stability check in --safe mode. This avoids a crash on rare inputs that have many unformatted same-content lines. (#4034)

Packaging

  • Upgrade to mypy 1.7.1 (#4049) (#4069)
  • Faster compiled wheels are now available for CPython 3.12 (#4070)

Integrations

  • Enable 3.12 CI (#4035)
  • Build docker images in parallel (#4054)
  • Build docker images with 3.12 (#4055)
Commits
  • d9ad09a Prepare release 23.12.0 (#4105)
  • ebd543c Fix feature detection for parenthesized context managers (#4104)
  • eb7661f Fix another case where we format dummy implementation for non-functions/class...
  • 0c98999 Fix path in test message (#4102)
  • 9aea976 Only use dummy implementation logic for functions and classes (#4066)
  • 67b23d7 Bump actions/setup-python from 4 to 5 (#4101)
  • ce28be2 Add dedicated preview feature for East Asian Width (#4097)
  • 61b529b Allow empty lines at beginning of blocks (again) (#4060)
  • e7e122e docs: Move fmt: off docs (#4090)
  • 432d905 docs: Unify option descriptions between --help and the_basics.md (#4076)
  • Additional commits viewable in compare view

Updates ruff from 0.1.7 to 0.1.8

Release notes

Sourced from ruff's releases.

v0.1.8

Changes

This release includes opt-in support for formatting Python snippets within docstrings via the docstring-code-format setting. Check out the blog post for more details!

Preview features

  • Add "preserve" quote-style to mimic Black's skip-string-normalization (#8822)
  • Implement prefer_splitting_right_hand_side_of_assignments preview style (#8943)
  • [pycodestyle] Add fix for unexpected-spaces-around-keyword-parameter-equals (#9072)
  • [pycodestyle] Add fix for comment-related whitespace rules (#9075)
  • [pycodestyle] Allow sys.path modifications between imports (#9047)
  • [refurb] Implement hashlib-digest-hex (FURB181) (#9077)

Rule changes

  • Allow flake8-type-checking rules to automatically quote runtime-evaluated references (#6001)
  • Allow transparent cell magics in Jupyter Notebooks (#8911)
  • [flake8-annotations] Avoid ANN2xx fixes for abstract methods with empty bodies (#9034)
  • [flake8-self] Ignore underscore references in type annotations (#9036)
  • [pep8-naming] Allow class names when apps.get_model is a non-string (#9065)
  • [pycodestyle] Allow matplotlib.use calls to intersperse imports (#9094)
  • [pyflakes] Support fixing unused assignments in tuples by renaming variables (F841) (#9107)
  • [pylint] Add fix for subprocess-run-without-check (PLW1510) (#6708)

Formatter

  • Add docstring-code-format knob to enable docstring snippet formatting (#8854)
  • Use double quotes for all docstrings, including single-quoted docstrings (#9020)
  • Implement "dynamic" line width mode for docstring code formatting (#9098)
  • Support reformatting Markdown code blocks (#9030)
  • add support for formatting reStructuredText code snippets (#9003)
  • Avoid trailing comma for single-argument with positional separator (#9076)
  • Fix handling of trailing target comment (#9051)

CLI

  • Hide unsafe fix suggestions when explicitly disabled (#9095)
  • Add SARIF support to --output-format (#9078)

Bug fixes

  • Apply unnecessary index rule prior to enumerate rewrite (#9012)
  • [flake8-err-msg] Allow EM fixes even if msg variable is defined (#9059)
  • [flake8-pie] Prevent keyword arguments duplication (#8450)
  • [flake8-pie] Respect trailing comma in unnecessary-dict-kwargs (PIE804) (#9015)
  • [flake8-raise] Avoid removing parentheses on ctypes.WinError (#9027)
  • [isort] Avoid invalid combination of force-sort-within-types and lines-between-types (#9041)
  • [isort] Ensure that from-style imports are always ordered first in __future__ (#9039)
  • [pycodestyle] Allow tab indentation before keyword (#9099)

... (truncated)

Changelog

Sourced from ruff's changelog.

0.1.8

This release includes opt-in support for formatting Python snippets within docstrings via the docstring-code-format setting. Check out the blog post for more details!

Preview features

  • Add "preserve" quote-style to mimic Black's skip-string-normalization (#8822)
  • Implement prefer_splitting_right_hand_side_of_assignments preview style (#8943)
  • [pycodestyle] Add fix for unexpected-spaces-around-keyword-parameter-equals (#9072)
  • [pycodestyle] Add fix for comment-related whitespace rules (#9075)
  • [pycodestyle] Allow sys.path modifications between imports (#9047)
  • [refurb] Implement hashlib-digest-hex (FURB181) (#9077)

Rule changes

  • Allow flake8-type-checking rules to automatically quote runtime-evaluated references (#6001)
  • Allow transparent cell magics in Jupyter Notebooks (#8911)
  • [flake8-annotations] Avoid ANN2xx fixes for abstract methods with empty bodies (#9034)
  • [flake8-self] Ignore underscore references in type annotations (#9036)
  • [pep8-naming] Allow class names when apps.get_model is a non-string (#9065)
  • [pycodestyle] Allow matplotlib.use calls to intersperse imports (#9094)
  • [pyflakes] Support fixing unused assignments in tuples by renaming variables (F841) (#9107)
  • [pylint] Add fix for subprocess-run-without-check (PLW1510) (#6708)

Formatter

  • Add docstring-code-format knob to enable docstring snippet formatting (#8854)
  • Use double quotes for all docstrings, including single-quoted docstrings (#9020)
  • Implement "dynamic" line width mode for docstring code formatting (#9098)
  • Support reformatting Markdown code blocks (#9030)
  • add support for formatting reStructuredText code snippets (#9003)
  • Avoid trailing comma for single-argument with positional separator (#9076)
  • Fix handling of trailing target comment (#9051)

CLI

  • Hide unsafe fix suggestions when explicitly disabled (#9095)
  • Add SARIF support to --output-format (#9078)

Bug fixes

  • Apply unnecessary index rule prior to enumerate rewrite (#9012)
  • [flake8-err-msg] Allow EM fixes even if msg variable is defined (#9059)
  • [flake8-pie] Prevent keyword arguments duplication (#8450)
  • [flake8-pie] Respect trailing comma in unnecessary-dict-kwargs (PIE804) (#9015)
  • [flake8-raise] Avoid removing parentheses on ctypes.WinError (#9027)
  • [isort] Avoid invalid combination of force-sort-within-types and lines-between-types (#9041)
  • [isort] Ensure that from-style imports are always ordered first in __future__ (#9039)

... (truncated)

Commits
  • c014622 Bump version to v0.1.8 (#9116)
  • b6fb972 config: add new docstring-code-format knob (#8854)
  • 18452cf Add as_slice method for all string nodes (#9111)
  • cb99815 Feature: Add SARIF output support (#9078)
  • 45f6030 prefer_splitting_right_hand_side_of_assignments preview style (#8943)
  • 1a65e54 Allow flake8-type-checking rules to automatically quote runtime-evaluated r...
  • 4d2ee5b Add named expression handling to find_assigned_value (#9109)
  • 8314c8b [typing] Add find_assigned_value helper func to typing.rs to retrieve v...
  • cb201bc PIE804: Prevent keyword arguments duplication (#8450)
  • 6c0068e Remove ExprFormattedValue formatting impl (#9108)
  • Additional commits viewable in compare view

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 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

Bumps the deps group with 2 updates: [black](https://github.com/psf/black) and [ruff](https://github.com/astral-sh/ruff).


Updates `black` from 23.11.0 to 23.12.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.11.0...23.12.0)

Updates `ruff` from 0.1.7 to 0.1.8
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.7...v0.1.8)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 18, 2023
@brndnmtthws brndnmtthws merged commit c3b7af4 into main Dec 18, 2023
8 checks passed
@brndnmtthws brndnmtthws deleted the dependabot/pip/deps-edb7254e20 branch December 18, 2023 13:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant