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

chore(deps-dev): bump the development-dependencies group across 1 directory with 5 updates #1023

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Updates the requirements on pytest, flake8-bugbear, mypy, django-stubs and pytest-celery to permit the latest version.
Updates pytest from 8.3.3 to 8.3.4

Release notes

Sourced from pytest's releases.

8.3.4

pytest 8.3.4 (2024-12-01)

Bug fixes

  • #12592: Fixed KeyError{.interpreted-text role="class"} crash when using --import-mode=importlib in a directory layout where a directory contains a child directory with the same name.

  • #12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the AST, like executing.

  • #12849: ANSI escape codes for colored output now handled correctly in pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.

  • #9353: pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans.

Improved documentation

  • #10558: Fix ambiguous docstring of pytest.Config.getoption{.interpreted-text role="func"}.

  • #10829: Improve documentation on the current handling of the --basetemp option and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}).

  • #12866: Improved cross-references concerning the recwarn{.interpreted-text role="fixture"} fixture.

  • #12966: Clarify filterwarnings{.interpreted-text role="ref"} docs on filter precedence/order when using multiple @pytest.mark.filterwarnings <pytest.mark.filterwarnings ref>{.interpreted-text role="ref"} marks.

Contributor-facing changes

  • #12497: Fixed two failing pdb-related tests on Python 3.13.
Commits
  • 53f8b4e Update pypa/gh-action-pypi-publish to v1.12.2
  • 98dff36 Prepare release version 8.3.4
  • 1b474e2 approx: use exact comparison for bool (#13013)
  • b541721 docs: Fix wrong statement about sys.modules with importlib import mode (#1298...
  • 16cb87b pytest.fail: fix ANSI escape codes for colored output (#12959) (#12990)
  • be6bc81 Issue #12966 Clarify filterwarnings docs on precedence when using multiple ma...
  • 7aeb72b Improve docs on basetemp and retention (#12912) (#12928)
  • c875841 Merge pull request #12917 from pytest-dev/patchback/backports/8.3.x/ded1f44e5...
  • 6502816 Merge pull request #12913 from jakkdl/dontfailonbadpath
  • 52135b0 Merge pull request #12885 from The-Compiler/pdb-py311 (#12887)
  • Additional commits viewable in compare view

Updates flake8-bugbear from 24.8.19 to 24.12.12

Release notes

Sourced from flake8-bugbear's releases.

24.12.12

  • B012 and B025 now also handle try/except* (#500)
  • Skip B028 if warnings.warn is called with *args or **kwargs (#501)
  • Add B911: itertools.batched without strict= (#502)
  • Readme has anchors per check (they do not seem to render on GitHub tho)

24.10.31

  • B041: New dictionary same key AND value check (#496)
  • B037: Fix typo in error message
  • B024: No longer treats assigned class variables as abstract (#471)
  • Bump required attrs version to 22.2.0
Commits
  • 3a14037 Update CHANGES + move to version 24.12.12 to release
  • 761dbe2 Make rstcheck pass again sadly ignoring anchor links
  • 7ee1976 README: Add anchors for rules and config options (#491)
  • b960272 add except* support to B012&B025 (#500)
  • 4fed293 Skip B028 if warnings.warn is called with *args or **kwargs (#501)
  • 994f3dd Add B911: itertools.batched without strict= (#502)
  • 108bba4 Fix README format
  • 72f6116 Update CHANGES + move to version 24.10.31 to release
  • 07a5676 Add scentence really explaining B041
  • 95f8791 Add B041: Duplicate key-value pairs in dictionary literals (#496)
  • Additional commits viewable in compare view

Updates mypy from 1.11.2 to 1.14.1

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Drop Support for Python 3.8

Mypy no longer supports running with Python 3.8, which has reached end-of-life. When running mypy with Python 3.9+, it is still possible to type check code that needs to support Python 3.8 with the --python-version 3.8 argument. Support for this will be dropped in the first half of 2025!

Contributed by Marc Mueller (PR 17492).

Mypyc accelerated mypy wheels for aarch64

Mypy can compile itself to C extension modules using mypyc. This makes mypy 3-5x faster than if mypy is interpreted with pure Python. We now build and upload mypyc accelerated mypy wheels for manylinux_aarch64 to PyPI, making it easy for users on such platforms to realise this speedup.

Contributed by Christian Bundy (PR mypy_mypyc-wheels#76)

--strict-bytes

By default, mypy treats an annotation of bytes as permitting bytearray and memoryview. PEP 688 specified the removal of this special case. Use this flag to disable this behavior. --strict-bytes will be enabled by default in mypy 2.0.

Contributed by Ali Hamdan (PR 18137) and Shantanu Jain (PR 13952).

Improvements to partial type handling in loops

This change results in mypy better modelling control flow within loops and hence detecting several issues it previously did not detect. In some cases, this change may require use of an additional explicit annotation of a variable.

Contributed by Christoph Tyralla (PR 18180).

(Speaking of partial types, another reminder that mypy plans on enabling --local-partial-types by default in mypy 2.0).

Mypy 1.14

We’ve just uploaded mypy 1.14 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

... (truncated)

Commits

Updates django-stubs from 5.1.0 to 5.1.1

Commits

Updates pytest-celery to 1.1.3

Release notes

Sourced from pytest-celery's releases.

v1.1.3

What's Changed

Fixed issues when using Redis as a backend.

Full Changelog: celery/pytest-celery@v1.1.2...v1.1.3

Changelog

Sourced from pytest-celery's changelog.

1.1.3

:release-date: 20 September, 2024 :release-by: Tomer Nosrati

What's Changed

Fixed issues when using Redis as a backend.

  • Build(deps): Bump boto3 from 1.35.14 to 1.35.18 (#409)
  • Build(deps): Bump botocore from 1.35.18 to 1.35.19 (#408)
  • Build(deps): Bump setuptools from 74.1.2 to 75.0.0 (#407)
  • Fixed Redis error in the smoke tests: "Possible SECURITY ATTACK detected" (#413)
  • Fix Redis memory overcommit warning in the CI (#414)
  • Build(deps): Bump setuptools from 75.0.0 to 75.1.0 (#411)
  • Relaxed flaky tests mechanism (#415)
  • Bumping Dependencies (inc. pyproject.toml) (#416)
  • Fixed IndexError when accessing the container port info (#417)
  • Resolved race condition during Redis backend teardown (#418)
  • Prepare for release: v1.1.3 (#419)

.. _version-1.1.2:

1.1.2

:release-date: 14 September, 2024 :release-by: Tomer Nosrati

What's Changed

Key Highlights

Fixed Redis container instabilities in #405

Other Changes

  • Build(deps): Bump botocore from 1.34.158 to 1.34.161 (#382)
  • Build(deps): Bump boto3 from 1.34.158 to 1.34.161 (#383)
  • Build(deps): Bump botocore from 1.34.161 to 1.34.162 (#384)
  • Build(deps): Bump setuptools from 72.1.0 to 72.2.0 (#381)
  • Build(deps-dev): Bump types-redis from 4.6.0.20240806 to 4.6.0.20240819 (#385)
  • Build(deps): Bump boto3 from 1.34.161 to 1.34.162 (#386)
  • Build(deps): Bump setuptools from 72.2.0 to 73.0.0 (#387)
  • Build(deps): Bump setuptools from 73.0.0 to 73.0.1 (#388)
  • Build(deps-dev): Bump mypy from 1.11.1 to 1.11.2 (#389)
  • Build(deps): Bump setuptools from 73.0.1 to 74.0.0 (#390)
  • Build(deps): Bump urllib3 from 1.26.19 to 1.26.20 (#391)

... (truncated)

Commits
  • 68b9981 Prepare for release: v1.1.3 (#419)
  • a1b73b5 Resolved race condition during Redis backend teardown (#418)
  • cadcc9e Fixed IndexError when accessing the container port info (#417)
  • 00b9b5a Bumping Dependencies (inc. pyproject.toml) (#416)
  • c27bec5 Relaxed flaky tests mechanism (#415)
  • 30766c5 Build(deps): Bump setuptools from 75.0.0 to 75.1.0 (#411)
  • 8eea6ae Fix Redis memory overcommit warning in the CI (#414)
  • 06170dc Fixed Redis error in the smoke tests: "Possible SECURITY ATTACK detected" (#413)
  • ea7c842 Build(deps): Bump setuptools from 74.1.2 to 75.0.0 (#407)
  • 3197fd1 Build(deps): Bump botocore from 1.35.18 to 1.35.19 (#408)
  • 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

…ectory with 5 updates

Updates the requirements on [pytest](https://github.com/pytest-dev/pytest), [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear), [mypy](https://github.com/python/mypy), [django-stubs](https://github.com/typeddjango/django-stubs) and [pytest-celery](https://github.com/celery/pytest-celery) to permit the latest version.

Updates `pytest` from 8.3.3 to 8.3.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.3...8.3.4)

Updates `flake8-bugbear` from 24.8.19 to 24.12.12
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases)
- [Commits](PyCQA/flake8-bugbear@24.8.19...24.12.12)

Updates `mypy` from 1.11.2 to 1.14.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11.2...v1.14.1)

Updates `django-stubs` from 5.1.0 to 5.1.1
- [Release notes](https://github.com/typeddjango/django-stubs/releases)
- [Commits](typeddjango/django-stubs@5.1.0...5.1.1)

Updates `pytest-celery` to 1.1.3
- [Release notes](https://github.com/celery/pytest-celery/releases)
- [Changelog](https://github.com/celery/pytest-celery/blob/main/Changelog.rst)
- [Commits](celery/pytest-celery@v0.1.0...v1.1.3)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: flake8-bugbear
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: django-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pytest-celery
  dependency-type: direct:development
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner January 1, 2025 08:39
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 1, 2025
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.

0 participants