Skip to content

chore(deps): bump the python-packages group across 1 directory with 6 updates #29

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

Open
wants to merge 1 commit into
base: dependabot-pr
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 2, 2025

Bumps the python-packages group with 6 updates in the / directory:

Package From To
tomlkit 0.13.2 0.13.3
typeguard 4.4.2 4.4.4
pyroma 4.2 4.3.2
sphinx 6.1.3 6.2.1
numpydoc 1.5.0 1.9.0
tox 4.11.3 4.27.0

Updates tomlkit from 0.13.2 to 0.13.3

Release notes

Sourced from tomlkit's releases.

0.13.3

What's Changed

New Contributors

Full Changelog: python-poetry/tomlkit@0.13.2...0.13.3

Changelog

Sourced from tomlkit's changelog.

[0.13.3] - 2025-06-05

Added

  • Add .item() method to array and tables to retrieve an item by key. (#390)

Fixed

  • Fix missing newline when parsing a separated array of tables without trailing new line. (#381)
  • Fix non-existing key error when deleting an item from an out-of-order table. (#383)
  • Ensure newline is added between the plain values and the first table. (#387)
  • Fix repeated whitespace when removing an array item. (#405)
  • Fix invalid serialization after removing array item if the comma is on its own line. (#408)
  • Fix serialization of a nested dotted key table. (#411)
  • Refine the error message when use non-string as single key. (#412)
  • Fix invalid serialization after overwriting a key of a out-of-order table. (#414)
Commits
  • 8c963db chore: update version to 0.13.3 (#423)
  • fcb82ae fix: Missing newline at end of file with multiple array of tables can corrupt...
  • d4e1ecd fix: add newline indentation after existing items in Container class (#421)
  • e3b7332 fix: ensure unique table indices when adding items to out-of-order tables (#420)
  • 14607a5 chore(deps-dev): bump jinja2 from 3.1.5 to 3.1.6 (#418)
  • bd31dbd fix: Dumping a subelement of a parsed toml fails starting on 4rd level of nes...
  • 62a6708 fix: Invalid serialization when overwriting out-of-order table key (#417)
  • 64064f3 [pre-commit.ci] pre-commit autoupdate (#415)
  • df4afc6 Fix: reject single keys that aren't strings (#416)
  • 832e855 Fix array item removal (#409)
  • Additional commits viewable in compare view

Updates typeguard from 4.4.2 to 4.4.4

Release notes

Sourced from typeguard's releases.

4.4.4

  • Fixed IndexError when using @typechecked on more than one function with the same name under certain circumstances (#527)
  • Fixed TypeError during type checking when the value to check is a parametrized generic class (#526)

4.4.3

  • Fixed @typechecked unable to find the target function or method if it or the containing class had PEP 695 type parameters on them (#500)
  • Fixed handling of union types on Python 3.14 (#522)
  • Fixed __type_params__ getting lost when a function is instrumented
Changelog

Sourced from typeguard's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <https://semver.org/#semantic-versioning-200>_.

4.4.4 (2026-06-18)

  • Fixed IndexError when using @typechecked on more than one function with the same name under certain circumstances ([#527](https://github.com/agronholm/typeguard/issues/527) <https://github.com/agronholm/typeguard/issues/527>_)
  • Fixed TypeError during type checking when the value to check is a parametrized generic class ([#526](https://github.com/agronholm/typeguard/issues/526) <https://github.com/agronholm/typeguard/issues/526>_)

4.4.3 (2025-06-05)

  • Fixed @typechecked unable to find the target function or method if it or the containing class had PEP 695 type parameters on them ([#500](https://github.com/agronholm/typeguard/issues/500) <https://github.com/agronholm/typeguard/issues/500>_)
  • Fixed handling of union types on Python 3.14 ([#522](https://github.com/agronholm/typeguard/issues/522) <https://github.com/agronholm/typeguard/issues/522>_)
  • Fixed __type_params__ getting lost when a function is instrumented

4.4.2 (2025-02-16)

  • Fixed TypeCheckError in unpacking assignment involving properties of a parameter of the function ([#506](https://github.com/agronholm/typeguard/issues/506) <https://github.com/agronholm/typeguard/issues/506>_; regression introduced in v4.4.1)
  • Fixed display of module name for forward references ([#492](https://github.com/agronholm/typeguard/issues/492) <https://github.com/agronholm/typeguard/pull/492>_; PR by @​JelleZijlstra)
  • Fixed TypeError when using an assignment expression ([#510](https://github.com/agronholm/typeguard/issues/510) <https://github.com/agronholm/typeguard/issues/510>_; PR by @​JohannesK71083)
  • Fixed ValueError: no signature found for builtin when checking against a protocol and a matching attribute in the subject is a built-in function ([#504](https://github.com/agronholm/typeguard/issues/504) <https://github.com/agronholm/typeguard/issues/504>_)

4.4.1 (2024-11-03)

  • Dropped Python 3.8 support
  • Changed the signature of typeguard_ignore() to be compatible with typing.no_type_check() (PR by @​jolaf)
  • Avoid creating reference cycles when type checking uniontypes and classes
  • Fixed checking of variable assignments involving tuple unpacking ([#486](https://github.com/agronholm/typeguard/issues/486) <https://github.com/agronholm/typeguard/issues/486>_)
  • Fixed TypeError when checking a class against type[Self] ([#481](https://github.com/agronholm/typeguard/issues/481) <https://github.com/agronholm/typeguard/issues/481>_)
  • Fixed checking of protocols on the class level (against type[SomeProtocol]) ([#498](https://github.com/agronholm/typeguard/issues/498) <https://github.com/agronholm/typeguard/issues/498>_)
  • Fixed Self checks in instance/class methods that have positional-only arguments

... (truncated)

Commits
  • f16f4ae Added release date
  • 70acfe1 Fixed TypeError when checking a parametrized generic class as a value
  • 759dda1 Fixed IndexError when using @typechecked on duplicate functions
  • 63be648 Migrated to SPDX license markers
  • d80f566 Added release date
  • 386d4f2 Updated the changelog
  • 0ee471e Updated typing-extensions dependency to fix Python 3.14 compatibility
  • a3f6144 Fixed Union-related test failure on Python 3.14
  • 455bf7b Removed the obsolete UnionTransformer class
  • 92618cd [pre-commit.ci] pre-commit autoupdate (#520)
  • Additional commits viewable in compare view

Updates pyroma from 4.2 to 4.3.2

Changelog

Sourced from pyroma's changelog.

4.3.2 (2025-07-02)

  • Added support for License-Expression as per PEP 639.

4.3.1 (2025-07-01)

  • Deprecation warnings? For the packaging configuration? What was I thinking? I'm instead adding a rating telling people that they should add a pyproject.toml. Much nicer.

4.3 (2025-07-01)

  • Added a --skip-tests parameter to allow skipping of certain tests. You shouldn't skip tests, of course, but now you can. This is actually only implemented so that I can add a test using check-manifest and skip it when run from the zest.releaser hook.

  • If you also have check-manifest installed, pyroma will run that as a test. No longer do you need to call it separately! However, if Pyroma is invoked from zest.releaser, it will not be run, because check-manifest has a separate hook for zest.releaser, so that would run it twice.

  • Allow private classifiers [hugovk]

  • Using tox to run tests [hugovk]

  • Deperating the support for setup.py

Commits

Updates sphinx from 6.1.3 to 6.2.1

Release notes

Sourced from sphinx's releases.

v6.2.1

Changelog: https://www.sphinx-doc.org/en/master/changes.html

v6.2.0

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Changelog

Sourced from sphinx's changelog.

Release 6.2.1 (released Apr 25, 2023)

Bugs fixed

  • #11355: Revert the default type of :confval:nitpick_ignore and :confval:nitpick_ignore_regex to list.

Release 6.2.0 (released Apr 23, 2023)

Dependencies

  • Require Docutils 0.18.1 or greater.

Incompatible changes

  • LaTeX: removal of some internal TeX \dimen registers (not previously publicly documented) as per 5.1.0 code comments in sphinx.sty: \sphinxverbatimsep, \sphinxverbatimborder, \sphinxshadowsep, \sphinxshadowsize, and \sphinxshadowrule. (refs: #11105)
  • Remove .egg support from pycode ModuleAnalyser; Python eggs are a now-obsolete binary distribution format
  • #11089: Remove deprecated code in sphinx.builders.linkcheck. Patch by Daniel Eades
  • Remove internal-only sphinx.locale.setlocale

Deprecated

  • #11247: Deprecate the legacy intersphinx_mapping format
  • sphinx.util.osutil.cd is deprecated in favour of contextlib.chdir.

Features added

  • #11277: :rst:dir:autoproperty allows the return type to be specified as a type comment (e.g., # type: () -> int). Patch by Bénédikt Tran
  • #10811: Autosummary: extend __all__ to imported members for template rendering when option autosummary_ignore_module_all is set to False. Patch by Clement Pinard
  • #11147: Add a content_offset parameter to nested_parse_with_titles(), allowing for correct line numbers during nested parsing. Patch by Jeremy Maitin-Shepard
  • Update to Unicode CLDR 42
  • Add a --jobs synonym for -j. Patch by Hugo van Kemenade
  • LaTeX: a command \sphinxbox for styling text elements with a (possibly

... (truncated)

Commits
  • ec993dd Bump to 6.2.1 final
  • d2aa91f Revert the default type of nitpick_ignore[_regex] to list
  • 60d8fa1 Bump version
  • 70102ac Bump to 6.2.0 final
  • 4e27a5f Remove unneeded JavaScript from sphinx13 theme
  • bffb547 Note correct deprecation version for sphinx.util.osutil.cd
  • 59de8d5 Revert "Support and prefer .jinja to _t for static templates (#11165)...
  • aee3c0a Partially revert "Disable localisation when SOURCE_DATE_EPOCH is set (#10949)...
  • 186d596 Use overwrite_file context manager in test_ext_autodoc_configs (#11320)
  • 77483f2 Add missing test decorator for test_util_inspect (#11321)
  • Additional commits viewable in compare view

Updates numpydoc from 1.5.0 to 1.9.0

Commits
  • 3db2f68 Designate 1.9.0 release
  • 610a25e Designate 1.9.0rc0 release
  • 8044135 Specity the types of numpydoc_xref_ignore option (#631)
  • 865b865 Fix pip setup command in github workflow (#629)
  • 259f8ac Fix broken link in format.rst (#628)
  • 139a344 Switch to storing AST nodes on the stack for more accurate method signature c...
  • 84ebcc0 Switch to dependency groups (#626)
  • 8dbddc6 Bump scientific-python/circleci-artifacts-redirector-action from 1.0.0 to 1.1...
  • 9862b6a Bump actions/download-artifact from 4.2.1 to 4.3.0 in the actions group (#620)
  • 5b437b5 BUG: Correct functionality of numpydoc SS05 (#613)
  • Additional commits viewable in compare view

Updates tox from 4.11.3 to 4.27.0

Release notes

Sourced from tox's releases.

4.27.0

What's Changed

Full Changelog: tox-dev/tox@4.26.0...4.27.0

4.26.0

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.25.0...4.26.0

4.25.0

What's Changed

Full Changelog: tox-dev/tox@4.24.2...4.25.0

4.24.2

What's Changed

... (truncated)

Changelog

Sourced from tox's changelog.

v4.27.0 (2025-06-17)

Features - 4.27.0

- Add ``free_threaded`` flag to to ``"python"`` entries in json output of ``--result-json``. (:issue:`3534`)

Bugfixes - 4.27.0

  • Fix dependency-group name normalization. (:issue:3539)
  • Improves logging of environment variables by sorting them by key and redacting the values for the ones that are likely to contain secrets. (:issue:3542)

v4.26.0 (2025-05-13)

Features - 4.26.0

- Add support for free-threaded python builds.
  Factors like ``py313t`` will only pick builds with the GIL disabled while factors without trailing ``t`` will only pick
  builds without no-GIL support. (:issue:`3391`)
- Drop support for EOL Python 3.8. (:issue:`3527`)

Bugfixes - 4.26.0

  • Fix a regression issue related to inability to use file| substitution option in nested set_env sections of ini configurations since tox4 update. (:issue:2435)
  • Fix TypeError for HelpFormatter with Python 3.14 (:issue:3523)

v4.25.0 (2025-03-27)

Features - 4.25.0

- Add support for number ranges in generative environments, more details :ref:`here<generative-environment-list>`. - by :user:`mimre25` (:issue:`3502`)

Bugfixes - 4.25.0

  • Make tox tests pass with Python 3.14.0a6
    • by :user:hroncok (:issue:3500)

v4.24.2 (2025-03-07)

Bugfixes - 4.24.2

- multiple source_type supports for the same filename. Like pyproject.toml can be load by both TomlPyProject & LegacyToml (:issue:`3117`)
- Support ``set_env = { file = "conf{/}local.env"}`` for TOML format - by :user:`juditnovak`. (:issue:`3474`)
- fix example on the docs (:issue:`3480`)
- - ``--parallel-no-spinner`` now respects max CPU set by ``--parallel N`` (:issue:`3495`)

</tr></table>

... (truncated)

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

… updates

Bumps the python-packages group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tomlkit](https://github.com/sdispater/tomlkit) | `0.13.2` | `0.13.3` |
| [typeguard](https://github.com/agronholm/typeguard) | `4.4.2` | `4.4.4` |
| [pyroma](https://github.com/regebro/pyroma) | `4.2` | `4.3.2` |
| [sphinx](https://github.com/sphinx-doc/sphinx) | `6.1.3` | `6.2.1` |
| [numpydoc](https://github.com/numpy/numpydoc) | `1.5.0` | `1.9.0` |
| [tox](https://github.com/tox-dev/tox) | `4.11.3` | `4.27.0` |



Updates `tomlkit` from 0.13.2 to 0.13.3
- [Release notes](https://github.com/sdispater/tomlkit/releases)
- [Changelog](https://github.com/python-poetry/tomlkit/blob/master/CHANGELOG.md)
- [Commits](python-poetry/tomlkit@0.13.2...0.13.3)

Updates `typeguard` from 4.4.2 to 4.4.4
- [Release notes](https://github.com/agronholm/typeguard/releases)
- [Changelog](https://github.com/agronholm/typeguard/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/typeguard@4.4.2...4.4.4)

Updates `pyroma` from 4.2 to 4.3.2
- [Changelog](https://github.com/regebro/pyroma/blob/master/CHANGES.txt)
- [Commits](regebro/pyroma@4.2...4.3.2)

Updates `sphinx` from 6.1.3 to 6.2.1
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/v6.2.1/CHANGES)
- [Commits](sphinx-doc/sphinx@v6.1.3...v6.2.1)

Updates `numpydoc` from 1.5.0 to 1.9.0
- [Release notes](https://github.com/numpy/numpydoc/releases)
- [Changelog](https://github.com/numpy/numpydoc/blob/main/RELEASE.rst)
- [Commits](numpy/numpydoc@v1.5.0...v1.9.0)

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

---
updated-dependencies:
- dependency-name: tomlkit
  dependency-version: 0.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: typeguard
  dependency-version: 4.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: pyroma
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: sphinx
  dependency-version: 6.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: numpydoc
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: tox
  dependency-version: 4.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

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 Jul 2, 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