Skip to content

Build(deps): bump the python-dependencies group across 1 directory with 13 updates - #5749

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dependencies-9ec36d53a2
Open

Build(deps): bump the python-dependencies group across 1 directory with 13 updates#5749
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dependencies-9ec36d53a2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 8, 2026

Copy link
Copy Markdown
Contributor

Bumps the python-dependencies group with 13 updates in the / directory:

Package From To
pre-commit 4.6.1 4.6.2
pybind11 3.0.4 3.1.0
cmake 4.4.2 4.4.3
ninja 1.13.0 1.13.2
posthog 7.37.3 7.45.3
platformdirs 4.11.0 4.11.7
ipykernel 7.2.0 7.3.0
ipywidgets 8.1.8 8.1.9
sphinx-docsearch 0.3.0 0.3.1
ruff 0.15.15 0.16.5
nox 2026.4.10 2026.8.17
hypothesis 6.155.1 6.167.1
pytest-benchmark 5.2.3 5.3.0

Updates pre-commit from 4.6.1 to 4.6.2

Release notes

Sourced from pre-commit's releases.

pre-commit v4.6.2

Fixes

Changelog

Sourced from pre-commit's changelog.

4.6.2 - 2026-08-10

Fixes

Commits

Updates pybind11 from 3.0.4 to 3.1.0

Release notes

Sourced from pybind11's releases.

Version 3.1.0

New Features:

  • Support for Python 3.8 was removed. The minimum supported version is now Python 3.9. #6110

  • Support for MSVC 2017 has been dropped. #6110

  • Changed strict-mode numeric conversions for PEP 484 compatibility: float now accepts int, and complex now accepts int and float. #5879

  • Small extra features added to the pybind11 command line tool based on python-config. #4272

  • Added subinterpreter_thread_state, an RAII wrapper that owns a reusable PyThreadState for a sub-interpreter, together with a subinterpreter_scoped_activate overload that activates it. This lets an OS thread re-enter one or more sub-interpreters without creating and destroying a PyThreadState on every activation. #6073

  • Add py::mod_gil_used() as replacement spelling to py::mod_gil_not_used(false). #5797

Bug fixes:

  • Fixed a crash in py::subinterpreter::create() when called without a current PyThreadState, which its documentation explicitly allows — for example from an embedder that ended initialization with PyEval_SaveThread(), or from a worker thread that has never touched Python. error_scope is now constructed after a thread state has been attached instead of before. #6127

  • Make py::print delegate to the current frame/interpreter built-ins print entry, fixing handling of sys.stdout = None, following the active runtime's stream, keyword, and error semantics, and remaining a no-op if the entry is unavailable during teardown. #6121

  • Include the builtin complex type in the input annotation of the std::complex<T> type caster. #6113

  • String views (e.g. std::string_view) are now kept alive only when loaded from a transient source (such as a generator), fixing both a use-after-free and a regression where casting a view from a durable object outside a bound function would throw. #6096

  • Drop Python 2 prepend to evaluated source, causing errors to be off by one. #6089

  • Fix data race on last_storage_ptr_ cache in gil_safe_call_once_and_store. #6087

  • Allow user defined __str__ on enum_. #6078

  • Fix generated Callable type annotations for Python callbacks passed into C++ by inverting the callback's argument/return I/O context relative to the enclosing function signature. #6055

  • Correct __delitem__ for negative-step slices and re-enable contiguous erase fast path. #6088

  • Do not pass -fno-fat-lto-objects to GCC on macOS, which made all LTO probes fail and silently disabled LTO. #6114

  • Fixed cross-compilation to Emscripten/Pyodide with CMake ≥ 4.1 by no longer overriding an explicitly set PYBIND11_USE_CROSSCOMPILING when CMAKE_CROSSCOMPILING_EMULATOR is defined. #6094

  • Unset stale PYTHON_MODULE_DEBUG_POSTFIX and correct USE_PYTHON_INCLUDE_DIR variable. #6086

  • Apply -undefined dynamic_lookup to all Apple platforms. #6075

Internal:

  • Improved py::enum_ operator performance by restoring type-specific implementations. #5887

  • Optimized internal std::unordered_map/std::unordered_set hashing paths with noexcept. #5960

CI:

... (truncated)

Changelog

Sourced from pybind11's changelog.

Version 3.1.0 (August 6, 2026)

New Features:

  • Support for Python 3.8 was removed. The minimum supported version is now Python 3.9. #6110

  • Support for MSVC 2017 has been dropped. #6110

  • Changed strict-mode numeric conversions for PEP 484 compatibility: float now accepts int, and complex now accepts int and float. #5879

  • Small extra features added to the pybind11 command line tool based on python-config. #4272

  • Added subinterpreter_thread_state, an RAII wrapper that owns a reusable PyThreadState for a sub-interpreter, together with a subinterpreter_scoped_activate overload that activates it. This lets an OS thread re-enter one or more sub-interpreters without creating and destroying a PyThreadState on every activation. #6073

  • Add py::mod_gil_used() as replacement spelling to py::mod_gil_not_used(false). #5797

Bug fixes:

  • Fixed a crash in py::subinterpreter::create() when called without a current PyThreadState, which its documentation explicitly allows — for example from an embedder that ended initialization with PyEval_SaveThread(), or from a worker thread that has never touched Python. error_scope is now constructed after a thread state has been attached instead of before. #6127

  • Make py::print delegate to the current frame/interpreter built-ins print entry, fixing handling of sys.stdout = None, following the active runtime's stream, keyword, and error semantics, and remaining a no-op if the entry is unavailable during teardown. #6121

  • Include the builtin complex type in the input annotation of the std::complex<T> type caster. #6113

  • String views (e.g. std::string_view) are now kept alive only when loaded from a transient source (such as a generator), fixing both a use-after-free and a regression where casting a view from a durable object outside a bound function would throw. #6096

  • Drop Python 2 prepend to evaluated source, causing errors to be off by one. #6089

  • Fix data race on last_storage_ptr_ cache in gil_safe_call_once_and_store. #6087

... (truncated)

Commits
  • 97bf890 chore: prepare 3.1.0 release (#6125)
  • 05f6e6f fix(subinterpreter): don't touch the thread state before create() attaches on...
  • 6dd1756 chore(deps): update pre-commit hooks (#6126)
  • 5956509 Delegate py::print to Python's native print (#6121)
  • 63d627c feat!: drop support for Python 3.8, MSVC 2017 (#6110)
  • 695a7a4 chore(deps): bump the actions group with 3 updates (#6119)
  • ea9e6e6 feat: small command line helpers for quick tests (#4272)
  • 652c694 fix: add py::mod_gil_used() spelling, support pedantic tests (#5797)
  • 2f85cc8 chore(ci): bump NVHPC to 26.5 (#6117)
  • 5540f96 fix: only add string_view life support for transient sources (#6096)
  • Additional commits viewable in compare view

Updates cmake from 4.4.2 to 4.4.3

Release notes

Sourced from cmake's releases.

4.4.3

What's Changed

Full Changelog: scikit-build/cmake-python-distributions@4.4.2...4.4.3

Commits
  • 6003035 [Bot] Update to CMake 4.4.3 (#727)
  • 23030f4 chore(deps): bump the actions group with 2 updates (#728)
  • ceee561 [Bot] Update to OpenSSL 3.5.8 (#726)
  • ce3a7eb chore(deps): bump the actions group with 2 updates (#725)
  • f320aff chore(deps): bump pypa/cibuildwheel (#724)
  • 0cb59ec ci: use actions/attest instead of actions/attest-build-provenance (#723)
  • 030dd2a chore(deps): update pre-commit hooks (#720)
  • 140e91c chore(deps): bump the actions group with 2 updates (#721)
  • See full diff in compare view

Updates ninja from 1.13.0 to 1.13.2

Release notes

Sourced from ninja's releases.

v1.13.2

  • Fix Ninja exit code when interrupted (issue #2681) #2690

v1.13.1

Bugfixes:

  • Fix LINK : fatal error LNK1104: cannot open file on Windows in some cases #2616
  • Compatibility with older distros for Linux ARM version #2619
  • Restore "multiple rules generate" error with dyndep #2621
Commits
  • 3441b63 v1.13.2
  • bd56313 Fix Ninja exit code when interrupted.
  • 79feac0 v1.13.1
  • 5807cf7 Merge branch 'master' into release
  • 31af250 Merge pull request #2636 from jhasse/rsp-crlf
  • 516a0dd Add output test for multiple rules + dyndep, fix #2621
  • 114fb93 Convert \n to \r\n on Windows in rsp files, fix #2616
  • d60673d Merge pull request #2628 from userdocs/workflows-fix-triggers
  • 9659311 prevent duplicate runs being triggered when a release tag is published.
  • b783add Merge pull request #2627 from userdocs/linux.yml-build
  • Additional commits viewable in compare view

Updates posthog from 7.37.3 to 7.45.3

Release notes

Sourced from posthog's releases.

posthog-v7.45.3

Patch changes

  • caf9030 MCP tool failures now report the exception the tool actually raised on $mcp_error_message and $mcp_error_type, stepping past the SDK's dispatch ToolError wrapper. mcp 2.1 masks the original message out of that wrapper, which left the failures view with only Error executing tool <name>. The $exception sibling still carries the full chain. — Thanks @​bernatixer!

posthog-v7.45.2

Patch changes

  • 9444ec5 Omit $ai_input_tokens and $ai_output_tokens when the provider never reported usage, instead of sending 0, so an interrupted stream no longer looks like a free call. A zero reported by the provider is still sent, and zero keeps meaning a real report of nothing. Covers the OpenAI, Anthropic, Gemini, LangChain, OpenAI Agents and Claude Agent SDK integrations. — Thanks @​bernatixer!

posthog-v7.45.1

Patch changes

  • 131cc1a Match local feature flag string operators using the flags service's boolean coercion, JSON stringification, and casing rules. — Thanks @​marandaneto!

posthog-v7.45.0

Minor changes

  • f50f333 Add non-blocking feature flag evaluation and remote config APIs to AsyncPosthog — Thanks @​marandaneto!
  • f50f333 Add an asyncio-native client for buffered and immediate event capture — Thanks @​marandaneto!

posthog-v7.44.2

Patch changes

  • fc7e043 Honor default_cache_ttl_seconds=0 in AI prompts so callers can disable default prompt caching. — Thanks @​ckarnell for your first contribution 🎉!

posthog-v7.44.1

Patch changes

  • 0e70f0c Align local is_set and is_not_set evaluation with partial property context. — Thanks @​marandaneto!

posthog-v7.44.0

Minor changes

  • 9a1d137 Add an opt-in capture_trace_context client option. When enabled, and a valid OpenTelemetry span is active at capture time, its trace and span IDs are attached to events captured with capture() and capture_ai() as $trace_id and $span_id, so they can be correlated with backend traces. Disabled by default, and explicit $trace_id/$span_id properties take precedence. — Thanks @​DanielVisca!

posthog-v7.43.1

Patch changes

  • 8046114 Return an empty feature flag snapshot without evaluation when feature flag keys are explicitly empty. — Thanks @​marandaneto!

posthog-v7.43.0

Minor changes

  • 35220f3 Fall back to remote evaluation when a requested flag is missing from local definitions. This changes the previous behavior where the key was omitted without a request. — Thanks @​marandaneto!

posthog-v7.42.1

Patch changes

  • c55c9b2 MCP analytics now surfaces the previously-silent case where the stateless session mint middleware (PostHogMcpStatelessSessionMiddleware) never attached — the trap where an ASGI app is built or mounted before instrument() runs, so autowiring can't retrofit it and every session falls back to a fragmented per-process id. instrument() warns when streamable_http_app() was already called before it ran, and a one-time warning fires the first time a tool call arrives over streamable HTTP and the session still has to come from process memory. Both go to the posthog.mcp standard-library logger as well as the MCPAnalyticsOptions(logger=...) sink, so they are visible without opting in — silence them with logging.getLogger("posthog.mcp").setLevel(logging.ERROR). Neither fires for stdio, a correctly-wired server, a conversation-anchored session, or the SSE transport (which the mint cannot fix). Documented in the new posthog/mcp/README.md. — Thanks @​posthog[bot]!

... (truncated)

Commits
  • 9cfe645 chore: Release v7.45.3 [skip ci]
  • caf9030 fix(mcp): report the exception a tool raised when the SDK masks it (#907)
  • bec61e7 Update generated references
  • b619a13 chore: Release v7.45.2 [skip ci]
  • 9444ec5 fix(ai): omit token counts the provider never reported (#906)
  • 2e7c73b chore(deps): bump the ai-providers group with 7 updates (#903)
  • 596cf46 chore(deps): bump the github-actions group with 3 updates (#904)
  • 775b654 Update generated references
  • 57c0d16 chore: Release v7.45.1 [skip ci]
  • 131cc1a fix(flags): align local case folding with the flags service (#902)
  • Additional commits viewable in compare view

Updates platformdirs from 4.11.0 to 4.11.7

Release notes

Sourced from platformdirs's releases.

4.11.7

Full Changelog: tox-dev/platformdirs@4.11.6...4.11.7

4.11.6

What's Changed

Full Changelog: tox-dev/platformdirs@4.11.5...4.11.6

4.11.5

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.11.4...4.11.5

4.11.4

What's Changed

Full Changelog: tox-dev/platformdirs@4.11.3...4.11.4

4.11.3

What's Changed

... (truncated)

Changelog

Sourced from platformdirs's changelog.

########### Changelog ###########

.. towncrier-draft-entries:: Unreleased

.. towncrier release notes start


4.11.7 (2026-09-01)



4.11.6 (2026-09-01)


  • Give :func:~platformdirs.user_bin_dir and :func:~platformdirs.user_bin_path the use_site_for_root argument. They took none, so neither could reach the Unix redirect of root to :func:~platformdirs.site_bin_dir. :pr:537

4.11.5 (2026-08-27)


  • Give :func:~platformdirs.user_preference_dir and :func:~platformdirs.user_preference_path the same arguments as :func:~platformdirs.user_config_dir. Added without arguments in :pr:491, they could only return the unscoped base directory even though the property they wrap appends the app name and version. :pr:531
  • Make :func:~platformdirs.site_applications_path return the first entry when multipath=True, matching :func:~platformdirs.site_data_path. On Unix and macOS it passed the whole $XDG_DATA_DIRS list to :class:~pathlib.Path, giving one unusable path such as /first/applications:/second/applications. :pr:532
  • Give :func:~platformdirs.user_applications_dir, :func:~platformdirs.user_applications_path, :func:~platformdirs.site_applications_dir and :func:~platformdirs.site_applications_path the app arguments. Android scopes both applications directories to the app, so without them the functions could only return the unscoped base directory there. On the two site functions they are keyword-only, keeping multipath first positional as it has been since 4.9.0; the two user functions take their boolean options keyword-only. :pr:534
  • Correct the ordering note on the iterator methods. use_site_for_root drops the user directory entirely, so the iterators are documented as yielding the most specific directory first rather than always yielding the user one. :pr:533

4.11.4 (2026-08-24)


  • Stop the iter_*_dirs methods yielding the same directory twice when a site directory resolves to its user equivalent - :pr:520 covered only Unix with use_site_for_root. It also hit :meth:~platformdirs.PlatformDirs.iter_runtime_dirs on Unix with $XDG_RUNTIME_DIR set, on Windows and macOS, and all six iterators on Android. :pr:524
  • Fix the config merging example in the how-to guide. iter_config_paths yields the user directory first, so the config.update loop let the site defaults override the user's config instead of the other way round. :pr:529

... (truncated)

Commits
  • e0847a6 Release 4.11.7
  • cf226ab Release 4.11.6
  • c22544b fix: accept use_site_for_root in the bin functions (#537)
  • 7499756 [pre-commit.ci] pre-commit autoupdate (#536)
  • bd77b0d Release 4.11.5
  • 2a3ab96 fix: accept app arguments in user_preference_dir (#531)
  • 56a9bc7 refactor: keyword-only booleans on the applications functions (#535)
  • 8147f77 fix: accept app arguments in the applications functions (#534)
  • 8ea7338 fix: return one site applications path for multipath (#532)
  • 4d4279f docs: fix the iterator order claim in api.rst (#533)
  • Additional commits viewable in compare view

Updates ipykernel from 7.2.0 to 7.3.0

Release notes

Sourced from ipykernel's releases.

v7.3.0

7.3.0

(Full Changelog)

New features added

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

The following people contributed discussions, new ideas, code and documentation contributions, and review. See our definition of contributors.

(GitHub contributors page for this release)

... (truncated)

Changelog

Sourced from ipykernel's changelog.

7.3.0

(Full Changelog)

New features added

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

The following people contributed discussions, new ideas, code and documentation contributions, and review. See our definition of contributors.

(GitHub contributors page for this release)

@​adityawasudeo (activity) | @​Carreau (activity) | @​erawn (activity) | @​goelakash (activity) | @​ianthomas23 (activity) | @​JohanMabille (activity) | @​krassowski (activity) | @​minrk (activity) | @​P4X-ng (activity) | @​pelson (activity) | @​rgbkrk (activity)

... (truncated)

Commits
  • 5dbd5ce Publish 7.3.0
  • 28e9cf8 chore: update pre-commit hooks (#1508)
  • 4e4f82c Support ZMQ Curve for transport encryption (#1515)
  • b64f597 Merge branch 'main' into curve-encryption
  • 6fc8b58 Fix broken IPython Reference URL in help_links (#1526)
  • cd6f460 Fix typing due to new jupyter_client version
  • b0678ba Update pyproject.toml to depend on jupyter_client 8.9.0 rather than branch
  • 2157ae7 Update tests to reflact rename to "auto"
  • 336971e build docs on latest python (#1525)
  • 7ecb521 Fix tests
  • Additional commits viewable in compare view

Updates ipywidgets from 8.1.8 to 8.1.9

Release notes

Sourced from ipywidgets's releases.

Release 8.1.9

What's Changed

New Contributors

Full Changelog: jupyter-widgets/ipywidgets@8.1.8...8.1.9

Commits

Updates sphinx-docsearch from 0.3.0 to 0.3.1

Release notes

Sourced from sphinx-docsearch's releases.

0.3.1

What's Changed

Full Changelog: algolia/sphinx-docsearch@0.3.0...0.3.1

Commits
  • 6462139 chore: bump version
  • 9669c56 fix: agent studio example (#144)
  • 2c975c6 chore(deps): bump soupsieve from 2.8.3 to 2.8.4 (#142)
  • 46ee48e chore(deps): bump actions/checkout from 6 to 7 (#141)
  • 9025653 chore(deps): bump starlette from 1.0.1 to 1.3.1 (#140)
  • 811f286 chore(deps): bump tornado from 6.5.6 to 6.5.7 (#139)
  • c659540 chore(deps): bump starlette from 0.49.3 to 1.0.1 (#138)
  • Description has been truncated

…th 13 updates

Bumps the python-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.6.1` | `4.6.2` |
| [pybind11](https://github.com/pybind/pybind11) | `3.0.4` | `3.1.0` |
| [cmake](https://github.com/scikit-build/cmake-python-distributions) | `4.4.2` | `4.4.3` |
| [ninja](https://github.com/ninja-build/ninja) | `1.13.0` | `1.13.2` |
| [posthog](https://github.com/posthog/posthog-python) | `7.37.3` | `7.45.3` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.11.0` | `4.11.7` |
| [ipykernel](https://github.com/ipython/ipykernel) | `7.2.0` | `7.3.0` |
| [ipywidgets](https://github.com/jupyter-widgets/ipywidgets) | `8.1.8` | `8.1.9` |
| [sphinx-docsearch](https://github.com/algolia/sphinx-docsearch) | `0.3.0` | `0.3.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.15` | `0.16.5` |
| [nox](https://github.com/wntrblm/nox) | `2026.4.10` | `2026.8.17` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.155.1` | `6.167.1` |
| [pytest-benchmark](https://github.com/ionelmc/pytest-benchmark) | `5.2.3` | `5.3.0` |



Updates `pre-commit` from 4.6.1 to 4.6.2
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v4.6.1...v4.6.2)

Updates `pybind11` from 3.0.4 to 3.1.0
- [Release notes](https://github.com/pybind/pybind11/releases)
- [Changelog](https://github.com/pybind/pybind11/blob/master/docs/changelog.md)
- [Commits](pybind/pybind11@v3.0.4...v3.1.0)

Updates `cmake` from 4.4.2 to 4.4.3
- [Release notes](https://github.com/scikit-build/cmake-python-distributions/releases)
- [Changelog](https://github.com/scikit-build/cmake-python-distributions/blob/main/HISTORY.rst)
- [Commits](scikit-build/cmake-python-distributions@4.4.2...4.4.3)

Updates `ninja` from 1.13.0 to 1.13.2
- [Release notes](https://github.com/ninja-build/ninja/releases)
- [Commits](ninja-build/ninja@v1.13.0...v1.13.2)

Updates `posthog` from 7.37.3 to 7.45.3
- [Release notes](https://github.com/posthog/posthog-python/releases)
- [Changelog](https://github.com/PostHog/posthog-python/blob/main/CHANGELOG.md)
- [Commits](PostHog/posthog-python@posthog-v7.37.3...posthog-v7.45.3)

Updates `platformdirs` from 4.11.0 to 4.11.7
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/docs/changelog.rst)
- [Commits](tox-dev/platformdirs@4.11.0...4.11.7)

Updates `ipykernel` from 7.2.0 to 7.3.0
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/main/CHANGELOG.md)
- [Commits](ipython/ipykernel@v7.2.0...v7.3.0)

Updates `ipywidgets` from 8.1.8 to 8.1.9
- [Release notes](https://github.com/jupyter-widgets/ipywidgets/releases)
- [Commits](jupyter-widgets/ipywidgets@8.1.8...8.1.9)

Updates `sphinx-docsearch` from 0.3.0 to 0.3.1
- [Release notes](https://github.com/algolia/sphinx-docsearch/releases)
- [Commits](algolia/sphinx-docsearch@0.3.0...0.3.1)

Updates `ruff` from 0.15.15 to 0.16.5
- [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.15.15...0.16.5)

Updates `nox` from 2026.4.10 to 2026.8.17
- [Release notes](https://github.com/wntrblm/nox/releases)
- [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md)
- [Commits](wntrblm/nox@2026.04.10...2026.08.17)

Updates `hypothesis` from 6.155.1 to 6.167.1
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@v6.155.1...v6.167.1)

Updates `pytest-benchmark` from 5.2.3 to 5.3.0
- [Release notes](https://github.com/ionelmc/pytest-benchmark/releases)
- [Changelog](https://github.com/ionelmc/pytest-benchmark/blob/master/CHANGELOG.rst)
- [Commits](ionelmc/pytest-benchmark@v5.2.3...v5.3.0)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-version: 4.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pybind11
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: cmake
  dependency-version: 4.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ninja
  dependency-version: 1.13.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: posthog
  dependency-version: 7.45.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: platformdirs
  dependency-version: 4.11.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ipykernel
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: ipywidgets
  dependency-version: 8.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: sphinx-docsearch
  dependency-version: 0.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.16.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: nox
  dependency-version: 2026.8.17
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: hypothesis
  dependency-version: 6.167.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pytest-benchmark
  dependency-version: 5.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Sep 8, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 8, 2026 20:07
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Sep 8, 2026
@github-actions

github-actions Bot commented Sep 8, 2026

Copy link
Copy Markdown
Contributor

🐰 Bencher Report

ProjectPyBaMM
Branchdependabot/uv/python-dependencies-9ec36d53a2
Testbedbare-metal

⚠️ WARNING: Truncated view!

The full continuous benchmarking report exceeds the maximum length allowed on this platform.

🐰 View full continuous benchmarking report in Bencher

@codecov

codecov Bot commented Sep 8, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.15%. Comparing base (258fdc8) to head (241098a).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5749      +/-   ##
==========================================
- Coverage   98.24%   98.15%   -0.10%     
==========================================
  Files         341      341              
  Lines       33712    33712              
==========================================
- Hits        33121    33090      -31     
- Misses        591      622      +31     

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

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants