Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2025

Bumps the dev-dependencies group with 3 updates: pytest-cov, hypothesis and ruff.

Updates pytest-cov from 6.1.0 to 6.1.1

Changelog

Sourced from pytest-cov's changelog.

6.1.1 (2025-04-05)

  • Fixed breakage that occurs when --cov-context and the no_cover marker are used together.
Commits
  • 9463242 Bump version: 6.1.0 → 6.1.1
  • 7f2781b Update changelog.
  • a59548f Allow the context plugin to check if the controller is running or not. Fixes ...
  • See full diff in compare view

Updates hypothesis from 6.130.6 to 6.131.9

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.131.9

Fix a "BytesWarning" after version 6.131.1 if the source code used the same value in both a normal and binary string.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.8

"DirectoryBasedExampleDatabase" will now fall back to (potentially non-atomic) copies rather than renames, if the temporary directory used for atomic write-and-rename is on a different filesystem to the configured database location (issue #4335).

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.7

Further improve the performance of the new features introduced in version 6.131.1.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.6

This patch makes the new features introduced in version 6.131.1 much faster, and fixes an internal "RecursionError" when working with deeply-nested code.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.5

Fix a rare case where database entries were kept after they were no longer needed when using "Phase.target".

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.4

Internal refactoring of the "@​settings" object, with no user-visible change.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.131.3

Fixes a rare internal error where new code from version 6.131.1 could fail if "sys.modules" is simultaneously modified, e.g. as a side effect of imports executed from another thread. Our Thread-Safety Policy does not promise that this is supported, but we're happy to take reasonable fixes.

Thanks to Tony Li for reporting and fixing this issue.

The canonical version of these notes (with links) is on readthedocs.

... (truncated)

Commits
  • 0c6ac59 Bump hypothesis-python version to 6.131.9 and update changelog
  • b9586ff Merge pull request #4376 from tybug/fix-bytes-warning
  • 14b6538 use union instead of pipe
  • d2ad376 fix bytes warning
  • 4e788f7 Merge pull request #4374 from tybug/next
  • 814ead9 retitle
  • 2108abb add missing support.html redirect
  • f555283 move testimonials to usage.html
  • 485b802 move compatibility to "about hypothesis"
  • b0a1ee6 add redirect for test-statistics
  • Additional commits viewable in compare view

Updates ruff from 0.11.2 to 0.11.8

Release notes

Sourced from ruff's releases.

0.11.8

Release Notes

Preview features

  • [airflow] Apply auto fixes to cases where the names have changed in Airflow 3 (AIR302, AIR311) (#17553, #17570, #17571)
  • [airflow] Extend AIR301 rule (#17598)
  • [airflow] Update existing AIR302 rules with better suggestions (#17542)
  • [refurb] Mark fix as safe for readlines-in-for (FURB129) (#17644)
  • [syntax-errors] nonlocal declaration at module level (#17559)
  • [syntax-errors] Detect single starred expression assignment x = *y (#17624)

Bug fixes

  • [flake8-pyi] Ensure Literal[None,] | Literal[None,] is not autofixed to None | None (PYI061) (#17659)
  • [flake8-use-pathlib] Avoid suggesting Path.iterdir() for os.listdir with file descriptor (PTH208) (#17715)
  • [flake8-use-pathlib] Fix PTH104 false positive when rename is passed a file descriptor (#17712)
  • [flake8-use-pathlib] Fix PTH116 false positive when stat is passed a file descriptor (#17709)
  • [flake8-use-pathlib] Fix PTH123 false positive when open is passed a file descriptor from a function call (#17705)
  • [pycodestyle] Fix duplicated diagnostic in E712 (#17651)
  • [pylint] Detect global declarations in module scope (PLE0118) (#17411)
  • [syntax-errors] Make async-comprehension-in-sync-comprehension more specific (#17460)

Configuration

  • Add option to disable typing_extensions imports (#17611)

Documentation

Other changes

  • Add Python 3.14 to configuration options (#17647)
  • Make syntax error for unparenthesized except tuples version specific to before 3.14 (#17660)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.11.8

Preview features

  • [airflow] Apply auto fixes to cases where the names have changed in Airflow 3 (AIR302, AIR311) (#17553, #17570, #17571)
  • [airflow] Extend AIR301 rule (#17598)
  • [airflow] Update existing AIR302 rules with better suggestions (#17542)
  • [refurb] Mark fix as safe for readlines-in-for (FURB129) (#17644)
  • [syntax-errors] nonlocal declaration at module level (#17559)
  • [syntax-errors] Detect single starred expression assignment x = *y (#17624)

Bug fixes

  • [flake8-pyi] Ensure Literal[None,] | Literal[None,] is not autofixed to None | None (PYI061) (#17659)
  • [flake8-use-pathlib] Avoid suggesting Path.iterdir() for os.listdir with file descriptor (PTH208) (#17715)
  • [flake8-use-pathlib] Fix PTH104 false positive when rename is passed a file descriptor (#17712)
  • [flake8-use-pathlib] Fix PTH116 false positive when stat is passed a file descriptor (#17709)
  • [flake8-use-pathlib] Fix PTH123 false positive when open is passed a file descriptor from a function call (#17705)
  • [pycodestyle] Fix duplicated diagnostic in E712 (#17651)
  • [pylint] Detect global declarations in module scope (PLE0118) (#17411)
  • [syntax-errors] Make async-comprehension-in-sync-comprehension more specific (#17460)

Configuration

  • Add option to disable typing_extensions imports (#17611)

Documentation

Other changes

  • Add Python 3.14 to configuration options (#17647)
  • Make syntax error for unparenthesized except tuples version specific to before 3.14 (#17660)

0.11.7

Preview features

  • [airflow] Apply auto fixes to cases where the names have changed in Airflow 3 (AIR301) (#17355)
  • [perflint] Implement fix for manual-dict-comprehension (PERF403) (#16719)
  • [syntax-errors] Make duplicate parameter names a semantic error (#17131)

Bug fixes

  • [airflow] Fix typos in provider package names (AIR302, AIR312) (#17574)
  • [flake8-type-checking] Visit keyword arguments in checks involving typing.cast/typing.NewType arguments (#17538)
  • [pyupgrade] Preserve parenthesis when fixing native literals containing newlines (UP018) (#17220)
  • [refurb] Mark the FURB161 fix unsafe except for integers and booleans (#17240)

... (truncated)

Commits
  • 75effb8 Bump 0.11.8 (#17766)
  • 3353d07 [flake8-use-pathlib] Fix PTH104false positive when rename is passed a f...
  • 41f3f21 Improve messages outputted by py-fuzzer (#17764)
  • 76ec64d [red-knot] Allow subclasses of Any to be assignable to Callable types (#17717)
  • b7e69ec [red-knot] Increase durability of read-only File fields (#17757)
  • 9c57862 [red-knot] Cache source type during semanic index building (#17756)
  • 67ef370 [flake8-use-pathlib] Fix PTH116 false positive when stat is passed a fi...
  • e17e1e8 Sync vendored typeshed stubs (#17753)
  • 03d8679 [red-knot] Preliminary NamedTuple support (#17738)
  • d33a503 [red-knot] Add tests for classes that have incompatible __new__ and `__init...
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 1, 2025
@coveralls
Copy link

Pull Request Test Coverage Report for Build 14783769136

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 74.778%

Totals Coverage Status
Change from base Build 14432472508: 0.0%
Covered Lines: 367
Relevant Lines: 481

💛 - Coveralls

@coveralls
Copy link

coveralls commented May 1, 2025

Pull Request Test Coverage Report for Build 14784000724

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+12.1%) to 74.778%

Totals Coverage Status
Change from base Build 14783976231: 12.1%
Covered Lines: 367
Relevant Lines: 481

💛 - Coveralls

Bumps the dev-dependencies group with 3 updates: [pytest-cov](https://github.com/pytest-dev/pytest-cov), [hypothesis](https://github.com/HypothesisWorks/hypothesis) and [ruff](https://github.com/astral-sh/ruff).


Updates `pytest-cov` from 6.1.0 to 6.1.1
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.1.0...v6.1.1)

Updates `hypothesis` from 6.130.6 to 6.131.9
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.130.6...hypothesis-python-6.131.9)

Updates `ruff` from 0.11.2 to 0.11.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@0.11.2...0.11.8)

---
updated-dependencies:
- dependency-name: pytest-cov
  dependency-version: 6.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: hypothesis
  dependency-version: 6.131.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: ruff
  dependency-version: 0.11.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/dev-dependencies-ef60fcf73b branch from 8b77e13 to 0410e58 Compare May 1, 2025 21:36
@insolor insolor merged commit 60fe252 into master May 1, 2025
9 of 12 checks passed
@dependabot dependabot bot deleted the dependabot/pip/dev-dependencies-ef60fcf73b branch May 1, 2025 21:46
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.

2 participants