Skip to content
New issue

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

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

Already on GitHub? # to your account

Bump the all-dependencies group with 14 updates #581

Merged
merged 1 commit into from
Feb 16, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2025

Bumps the all-dependencies group with 14 updates:

Package From To
django 5.1.5 5.1.6
beautifulsoup4 4.13.1 4.13.3
botocore 1.36.12 1.36.17
coverage 7.6.10 7.6.11
django-stubs 5.1.2 5.1.3
django-stubs-ext 5.1.2 5.1.3
mypy 1.14.1 1.15.0
pytest-django 4.9.0 4.10.0
ruff 0.9.4 0.9.6
types-pytz 2024.2.0.20241221 2025.1.0.20250204
mkdocs-material 9.6.2 9.6.3
boto3 1.36.12 1.36.17
identify 2.6.6 2.6.7
virtualenv 20.29.1 20.29.2

Updates django from 5.1.5 to 5.1.6

Commits
  • 8c9973c [5.1.x] Bumped version for 5.1.6 release.
  • df27e43 [5.1.x] Added release date for 5.1.6, 5.0.12, and 4.2.19.
  • 4a04944 [5.1.x] Clarified docs for default email value in UserManager.create_user().
  • b814f4c [5.1.x] Refs #35612 -- Extended docs on how the security team evaluates reports.
  • 328d54f [5.1.x] Refs #36140 -- Added missing import in django/contrib/auth/forms.py.
  • 8552eef [5.1.x] Fixed #36140 -- Allowed BaseUserCreationForm to define non required p...
  • 76b4fb7 [5.1.x] Fixed #36162 -- Fixed the black Makefile docs rule to work on macOS.
  • 173edeb [5.1.x] Corrected ArrayAgg example for ordering usage.
  • 4f0169e [5.1.x] Tweaked docs to avoid reformatting given new black version.
  • 9d1945d [5.1.x] Clarified the Releaser's discretion for determining and postponing th...
  • Additional commits viewable in compare view

Updates beautifulsoup4 from 4.13.1 to 4.13.3

Updates botocore from 1.36.12 to 1.36.17

Commits
  • bf3cfcb Merge branch 'release-1.36.17'
  • d6f7d66 Bumping version to 1.36.17
  • 894456f Update endpoints model
  • 4b8beb4 Update to latest models
  • ab1b535 Merge branch 'release-1.36.16'
  • c70be78 Merge branch 'release-1.36.16' into develop
  • 43a9908 Bumping version to 1.36.16
  • d734e45 Update endpoints model
  • 7634b0b Update to latest models
  • f230031 Merge branch 'release-1.36.15'
  • Additional commits viewable in compare view

Updates coverage from 7.6.10 to 7.6.11

Changelog

Sourced from coverage's changelog.

Version 7.6.11 — 2025-02-08

  • Fix: a memory leak in CTracer has been fixed. The details are in issue 1924_ and pytest-dev 676_. This should reduce the memory footprint for everyone even if it hadn't caused a problem before.

  • We now ship a py3-none-any.whl wheel file. Thanks, Russell Keith-Magee <pull 1914_>_.

.. _pull 1914: nedbat/coveragepy#1914 .. _issue 1924: nedbat/coveragepy#1924 .. _pytest-dev 676: pytest-dev/pytest-cov#676

.. _changes_7-6-10:

Commits
  • a20898d docs: sample HTML for 7.6.11
  • 938d519 docs: prep for 7.6.11
  • 27ee4ff test: free-threading builds were failing the old leak test #1924
  • f473b87 test: it could be useful to disable branch coverage in this helper
  • f85d9b7 fix: prevent code objects from leaking #1924
  • ae8d3b9 chore: make upgrade
  • 156981f build: zizmor can't tell this is safe
  • 6603021 chore: bump the action-dependencies group with 6 updates (#1922)
  • d6a1e5b test: run the pytracer first so .tox is left with a c extension for ad-hoc use
  • cd2db93 docs: a reminder about when RESUME applies
  • Additional commits viewable in compare view

Updates django-stubs from 5.1.2 to 5.1.3

Commits

Updates django-stubs-ext from 5.1.2 to 5.1.3

Commits

Updates mypy from 1.14.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

...

Mypy 1.15

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

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Performance Improvements

Mypy is up to 40% faster in some use cases. This improvement comes largely from tuning the performance of the garbage collector. Additionally, the release includes several micro-optimizations that may be impactful for large projects.

Contributed by Jukka Lehtosalo

Mypyc Accelerated Mypy Wheels for ARM Linux

For best performance, mypy can be compiled to C extension modules using mypyc. This makes mypy 3-5x faster than when interpreted with pure Python. We now build and upload mypyc accelerated mypy wheels for manylinux_aarch64 to PyPI, making it easy for Linux users on ARM platforms to realise this speedup -- just pip install the latest mypy.

Contributed by Christian Bundy and Marc Mueller (PR mypy_mypyc-wheels#76, PR mypy_mypyc-wheels#89).

--strict-bytes

By default, mypy treats bytearray and memoryview values as assignable to the bytes type, for historical reasons. Use the --strict-bytes flag to disable this behavior. PEP 688 specified the removal of this special case. The flag will be enabled by default in mypy 2.0.

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

Improvements to Reachability Analysis and Partial Type Handling in Loops

... (truncated)

Commits
  • 9397454 remove +dev from version ahead of final release
  • 686b591 remove "unreleased" from 1.15 changelog entry
  • cb4b243 Various small updates to 1.15 changelog (#18599)
  • 1a26502 Prepare changelog for 1.15 release (#18583)
  • d4515e4 Fix a few PR links in the changelog (#18586)
  • f83b643 Add object self-type to tuple test fixture (#18592)
  • ebc2cb8 Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)
  • 63c251e empty commit to trigger wheel rebuild
  • c30573e Fix literal context for ternary expressions (for real) (#18545)
  • 23d862d Fix isinstance with explicit (non generic) type alias (#18512)
  • Additional commits viewable in compare view

Updates pytest-django from 4.9.0 to 4.10.0

Release notes

Sourced from pytest-django's releases.

v4.10.0

https://github.com/pytest-dev/pytest-django/blob/main/docs/changelog.rst#v4100-2025-02-10

Changelog

Sourced from pytest-django's changelog.

v4.10.0 (2025-02-10)

Compatibility ^^^^^^^^^^^^^

  • Added official support for Python 3.13.

Improvements ^^^^^^^^^^^^

  • Added using argument to :fixture:django_assert_num_queries and :fixture:django_assert_max_num_queries to easily specify the database alias to use.

Bugfixes ^^^^^^^^

  • Fixed lock/unlock of db breaks if pytest is executed twice in the same process.
Commits
  • d8dc3d9 Release 4.10.0
  • 50a5578 build(deps): bump hynek/build-and-inspect-python-package
  • 54a5950 build(deps): bump pypa/gh-action-pypi-publish from 1.10.0 to 1.12.4
  • c030eb9 Bump codecov/codecov-action from 4 to 5
  • 0ee43ef Adds using to django_assert_num_queries (#1170)
  • c3018d6 Developer QOL (#1174)
  • 120c2a5 ci: update runs-on to ubuntu 24.04
  • ba6c6a6 tox: update ruff and mypy
  • e2c6cee Add Python 3.13 support
  • f422f1d Remove setup.py file
  • Additional commits viewable in compare view

Updates ruff from 0.9.4 to 0.9.6

Release notes

Sourced from ruff's releases.

0.9.6

Release Notes

Preview features

  • [airflow] Add external_task.{ExternalTaskMarker, ExternalTaskSensor} for AIR302 (#16014)
  • [flake8-builtins] Make strict module name comparison optional (A005) (#15951)
  • [flake8-pyi] Extend fix to Python <= 3.9 for redundant-none-literal (PYI061) (#16044)
  • [pylint] Also report when the object isn't a literal (PLE1310) (#15985)
  • [ruff] Implement indented-form-feed (RUF054) (#16049)
  • [ruff] Skip type definitions for missing-f-string-syntax (RUF027) (#16054)

Rule changes

  • [flake8-annotations] Correct syntax for typing.Union in suggested return type fixes for ANN20x rules (#16025)
  • [flake8-builtins] Match upstream module name comparison (A005) (#16006)
  • [flake8-comprehensions] Detect overshadowed list/set/dict, ignore variadics and named expressions (C417) (#15955)
  • [flake8-pie] Remove following comma correctly when the unpacked dictionary is empty (PIE800) (#16008)
  • [flake8-simplify] Only trigger SIM401 on known dictionaries (#15995)
  • [pylint] Do not report calls when object type and argument type mismatch, remove custom escape handling logic (PLE1310) (#15984)
  • [pyupgrade] Comments within parenthesized value ranges should not affect applicability (UP040) (#16027)
  • [pyupgrade] Don't introduce invalid syntax when upgrading old-style type aliases with parenthesized multiline values (UP040) (#16026)
  • [pyupgrade] Ensure we do not rename two type parameters to the same name (UP049) (#16038)
  • [pyupgrade] [ruff] Don't apply renamings if the new name is shadowed in a scope of one of the references to the binding (UP049, RUF052) (#16032)
  • [ruff] Update RUF009 to behave similar to B008 and ignore attributes with immutable types (#16048)

Server

  • Root exclusions in the server to project root (#16043)

Bug fixes

  • [flake8-datetime] Ignore .replace() calls while looking for .astimezone (#16050)
  • [flake8-type-checking] Avoid TC004 false positive where the runtime definition is provided by __getattr__ (#16052)

Documentation

  • Improve ruff-lsp migration document (#16072)
  • Undeprecate ruff.nativeServer (#16039)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.9.6

Preview features

  • [airflow] Add external_task.{ExternalTaskMarker, ExternalTaskSensor} for AIR302 (#16014)
  • [flake8-builtins] Make strict module name comparison optional (A005) (#15951)
  • [flake8-pyi] Extend fix to Python <= 3.9 for redundant-none-literal (PYI061) (#16044)
  • [pylint] Also report when the object isn't a literal (PLE1310) (#15985)
  • [ruff] Implement indented-form-feed (RUF054) (#16049)
  • [ruff] Skip type definitions for missing-f-string-syntax (RUF027) (#16054)

Rule changes

  • [flake8-annotations] Correct syntax for typing.Union in suggested return type fixes for ANN20x rules (#16025)
  • [flake8-builtins] Match upstream module name comparison (A005) (#16006)
  • [flake8-comprehensions] Detect overshadowed list/set/dict, ignore variadics and named expressions (C417) (#15955)
  • [flake8-pie] Remove following comma correctly when the unpacked dictionary is empty (PIE800) (#16008)
  • [flake8-simplify] Only trigger SIM401 on known dictionaries (#15995)
  • [pylint] Do not report calls when object type and argument type mismatch, remove custom escape handling logic (PLE1310) (#15984)
  • [pyupgrade] Comments within parenthesized value ranges should not affect applicability (UP040) (#16027)
  • [pyupgrade] Don't introduce invalid syntax when upgrading old-style type aliases with parenthesized multiline values (UP040) (#16026)
  • [pyupgrade] Ensure we do not rename two type parameters to the same name (UP049) (#16038)
  • [pyupgrade] [ruff] Don't apply renamings if the new name is shadowed in a scope of one of the references to the binding (UP049, RUF052) (#16032)
  • [ruff] Update RUF009 to behave similar to B008 and ignore attributes with immutable types (#16048)

Server

  • Root exclusions in the server to project root (#16043)

Bug fixes

  • [flake8-datetime] Ignore .replace() calls while looking for .astimezone (#16050)
  • [flake8-type-checking] Avoid TC004 false positive where the runtime definition is provided by __getattr__ (#16052)

Documentation

  • Improve ruff-lsp migration document (#16072)
  • Undeprecate ruff.nativeServer (#16039)

0.9.5

Preview features

  • Recognize all symbols named TYPE_CHECKING for in_type_checking_block (#15719)
  • [flake8-comprehensions] Handle builtins at top of file correctly for unnecessary-dict-comprehension-for-iterable (C420) (#15837)
  • [flake8-logging] .exception() and exc_info= outside exception handlers (LOG004, LOG014) (#15799)
  • [flake8-pyi] Fix incorrect behaviour of custom-typevar-return-type preview-mode autofix if typing was already imported (PYI019) (#15853)
  • [flake8-pyi] Fix more complex cases (PYI019) (#15821)
  • [flake8-pyi] Make PYI019 autofixable for .py files in preview mode as well as stubs (#15889)
  • [flake8-pyi] Remove type parameter correctly when it is the last (PYI019) (#15854)

... (truncated)

Commits

Updates types-pytz from 2024.2.0.20241221 to 2025.1.0.20250204

Commits

Updates mkdocs-material from 9.6.2 to 9.6.3

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.6.3

  • Fixed rendering of arrow heads in Mermaid.js class diagrams
  • Fixed #7960: Tags plugin crashes on numeric metadata titles
Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.6.3 (2025-02-07)

  • Fixed rendering of arrow heads in Mermaid.js class diagrams
  • Fixed #7960: Tags plugin crashes on numeric metadata titles

mkdocs-material-9.6.2 (2025-02-03)

  • Fixed #7955: Excessively long words don't break on narrow screens
  • Fixed #7947: Scope setting interferes with outdated version banner

mkdocs-material-9.6.1 (2025-01-31)

  • Fixed #7943: Tags plugin crashing due to merge error

mkdocs-material-9.6.0 (2025-01-31)

  • Added meta plugin
  • Rewrite of the tags plugin
  • Added support for allow lists in tags plugin
  • Added support for and custom sorting in tags plugin
  • Added support for related links in blog plugin
  • Added support for custom index pages in blog plugin
  • Added support for navigation subtitles
  • Fixed #7924: Anchors might require two clicks when using instant navigation

mkdocs-material-9.5.50 (2025-01-18)

  • Fixed #7913: Social plugin renders attribute lists in page title

mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)

  • Fixed #7896: Scoped tags listings not rendering in subsections

mkdocs-material-9.5.49 (2024-12-16)

  • Adjusted title color in dark mode for all supported Mermaid.js diagrams
  • Fixed #7803: Privacy plugin crashes on generated files
  • Fixed #7781: Mermaid.js flow chart title not visible in dark mode

mkdocs-material-9.5.48 (2024-12-08)

  • Fixed #7774: Disabling social cards doesn't work

mkdocs-material-9.5.47 (2024-12-01)

  • Fixed #7750: Numeric tags break search
  • Fixed #7748: Blog plugin breaks when using future drafts (9.5.45 regression)

mkdocs-material-9.5.46 (2024-11-25)

... (truncated)

Commits
  • 99ef0b9 Prepare 9.6.3 release
  • aaabbfe Reverting group plugin fix
  • d4203f6 Fixed group plugin crashing on ENV vars for enabled setting
  • 871e26c Documentation (#7975)
  • a2dc66d Fixed typos
  • bffafcc Documentation (#7971)
  • 3ec684c Added distribution files
  • a1816ae Fixed rendering of arrow heads in Mermaid.js class diagrams
  • 4861c7d Fixed tags plugin crashing on numeric title
  • 0a98686 Fix embedded mermaid css to fix class diagram arrow heads
  • Additional commits viewable in compare view

Updates boto3 from 1.36.12 to 1.36.17

Commits
  • e5a38ab Merge branch 'release-1.36.17'
  • df344c5 Bumping version to 1.36.17
  • 37adcd8 Add changelog entries from botocore
  • 7fa6ec7 Merge branch 'release-1.36.16'
  • 1a78b7a Merge branch 'release-1.36.16' into develop
  • df382df Bumping version to 1.36.16
  • dab3dfb Add changelog entries from botocore
  • cc56a2a Merge pull request #4417 from RyanFitzSimmonsAK/develop
  • b087948 Merge branch 'release-1.36.15'
  • 2b18684 Merge branch 'release-1.36.15' into develop
  • Additional commits viewable in compare view

Updates identify from 2.6.6 to 2.6.7

Commits
  • 157ee8e v2.6.7
  • 76cf716 Merge pull request #503 from mheiges/uv-interpreter
  • 8130ef9 add uv to interpreters list
  • e09b689 Merge pull request #501 from dinoshauer/patch-1
  • 5a2b68b add .templ extension
  • 4db44f0 Merge pull request #504 from pre-commit/all-repos_autofix_all-repos-sed
  • 82ab282 upgrade asottile/workflows
  • 96281e4 Merge pull request #502 from pre-commit/pre-commit-ci-update-config
  • 94c5fb1 [pre-commit.ci] pre-commit autoupdate
  • See full diff in compare view

Updates virtualenv from 20.29.1 to 20.29.2

Release notes

Sourced from virtualenv's releases.

20.29.2

What's Changed

Full Changelog: pypa/virtualenv@20.29.1...20.29.2

Changelog

Sourced from virtualenv's changelog.

v20.29.2 (2025-02-10)

Bugfixes - 20.29.2

- Remove old virtualenv wheel from the source distribution - by :user:`gaborbernat`. (:issue:`2841`)
- Upgrade embedded wheel pip to ``25.0.1`` from ``24.3.1`` - by :user:`gaborbernat`. (:issue:`2843`)
Commits

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 all-dependencies group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [django](https://github.com/django/django) | `5.1.5` | `5.1.6` |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) | `4.13.1` | `4.13.3` |
| [botocore](https://github.com/boto/botocore) | `1.36.12` | `1.36.17` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.10` | `7.6.11` |
| [django-stubs](https://github.com/typeddjango/django-stubs) | `5.1.2` | `5.1.3` |
| [django-stubs-ext](https://github.com/typeddjango/django-stubs) | `5.1.2` | `5.1.3` |
| [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [pytest-django](https://github.com/pytest-dev/pytest-django) | `4.9.0` | `4.10.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.9.4` | `0.9.6` |
| [types-pytz](https://github.com/python/typeshed) | `2024.2.0.20241221` | `2025.1.0.20250204` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.6.2` | `9.6.3` |
| [boto3](https://github.com/boto/boto3) | `1.36.12` | `1.36.17` |
| [identify](https://github.com/pre-commit/identify) | `2.6.6` | `2.6.7` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.29.1` | `20.29.2` |


Updates `django` from 5.1.5 to 5.1.6
- [Commits](django/django@5.1.5...5.1.6)

Updates `beautifulsoup4` from 4.13.1 to 4.13.3

Updates `botocore` from 1.36.12 to 1.36.17
- [Commits](boto/botocore@1.36.12...1.36.17)

Updates `coverage` from 7.6.10 to 7.6.11
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.10...7.6.11)

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

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

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

Updates `pytest-django` from 4.9.0 to 4.10.0
- [Release notes](https://github.com/pytest-dev/pytest-django/releases)
- [Changelog](https://github.com/pytest-dev/pytest-django/blob/main/docs/changelog.rst)
- [Commits](pytest-dev/pytest-django@v4.9.0...v4.10.0)

Updates `ruff` from 0.9.4 to 0.9.6
- [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.9.4...0.9.6)

Updates `types-pytz` from 2024.2.0.20241221 to 2025.1.0.20250204
- [Commits](https://github.com/python/typeshed/commits)

Updates `mkdocs-material` from 9.6.2 to 9.6.3
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.6.2...9.6.3)

Updates `boto3` from 1.36.12 to 1.36.17
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.36.12...1.36.17)

Updates `identify` from 2.6.6 to 2.6.7
- [Commits](pre-commit/identify@v2.6.6...v2.6.7)

Updates `virtualenv` from 20.29.1 to 20.29.2
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.29.1...20.29.2)

---
updated-dependencies:
- dependency-name: django
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: beautifulsoup4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: django-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: django-stubs-ext
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pytest-django
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: types-pytz
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: mkdocs-material
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: boto3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: identify
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: virtualenv
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

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 Feb 10, 2025
@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 84.31%. Comparing base (2576e55) to head (9b00858).

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #581   +/-   ##
=======================================
  Coverage   84.31%   84.31%           
=======================================
  Files          91       91           
  Lines        6401     6401           
=======================================
  Hits         5397     5397           
  Misses       1004     1004           
Flag Coverage Δ
unittests 84.31% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@rafsaf rafsaf merged commit 98ba87b into master Feb 16, 2025
5 checks passed
@rafsaf rafsaf deleted the dependabot/pip/all-dependencies-5f3d1ac6c9 branch February 16, 2025 20:40
# for free to join this conversation on GitHub. Already have an account? # 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