Skip to content

Bump the development-dependencies group in /demos/python/sdk_wireless_camera_control with 10 updates#713

Closed
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/pip/demos/python/sdk_wireless_camera_control/development-dependencies-87f5f4bcc6
Closed

Bump the development-dependencies group in /demos/python/sdk_wireless_camera_control with 10 updates#713
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/pip/demos/python/sdk_wireless_camera_control/development-dependencies-87f5f4bcc6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2025

Bumps the development-dependencies group in /demos/python/sdk_wireless_camera_control with 10 updates:

Package From To
pydoclint 0.5.14 0.6.2
black 24.10.0 25.1.0
pylint 3.3.3 3.3.6
mypy 1.14.1 1.15.0
types-requests 2.32.0.20241016 2.32.0.20250306
types-pytz 2024.2.0.20241221 2025.2.0.20250326
poethepoet 0.32.0 0.33.1
isort 5.13.2 6.0.1
types-protobuf 5.29.1.20241207 5.29.1.20250315
licensecheck 2024.3 2025.1.0

Updates pydoclint from 0.5.14 to 0.6.2

Release notes

Sourced from pydoclint's releases.

0.6.2

What's Changed

Full Changelog: jsh9/pydoclint@0.6.1...0.6.2

0.6.1

What's Changed

New Contributors

Full Changelog: jsh9/pydoclint@0.6.0...0.6.1

0.6.0

What's Changed

Full Changelog: jsh9/pydoclint@0.5.19...0.6.0

0.5.19

What's Changed

Full Changelog: jsh9/pydoclint@0.5.18...0.5.19

0.5.18

What's Changed

Full Changelog: jsh9/pydoclint@0.5.17...0.5.18

0.5.17

What's Changed

Full Changelog: jsh9/pydoclint@0.5.16...0.5.17

0.5.16

... (truncated)

Changelog

Sourced from pydoclint's changelog.

[0.6.2] - 2025-02-17

  • Fixed
    • An issue where no error was thrown when the user does not supply a path
    • A bug where --only-attrs-with-ClassVar-are-treated-as-class-attrs is not properly passed to the visitor in the flake8 mode
  • Full diff

[0.6.1] - 2025-02-16

  • Changed
    • Now if a function as an assert statement, an AssertError declaration is by default required in the docstring's "Asserts" section (if relevant config options to check raises/assertions are turned on)
  • Full diff

[0.6.0] - 2025-01-13

  • Added
    • A new violation code, DOC003, to detect docstring style mismatch (when docstrings are written in the style different from specified)
  • Full diff

[0.5.19] - 2025-01-12

  • Fixed
    • False positive DOC405 and DOC201 when we have bare return statements together with yield statements
  • Added
    • A new config option --should-document-star-arguments (if False, star arguments such as *args and **kwargs should not be documented in the docstring)
    • A pre-commit step to check that "Full diff" is always added in CHANGELOG.md
  • Full diff

[0.5.18] - 2025-01-12

  • Fixed
    • An issue where custom exceptions such as a.b.c.MyException.from_str cannot be properly parsed and compared
    • A minor wording issue in DOC503 violation message
  • Full diff

[0.5.17] - 2025-01-12

... (truncated)

Commits
  • 193dc55 Fix missing config option onlyAttrsWithClassVarAreTreatedAsClassAttrs (#219)
  • 981a0b1 Throw error when user provides no paths (#218)
  • 299a57c Update documentation on --ignore-underscore-args option
  • b05a41a Update documentation
  • 4a16088 Include AssertionError in Raises section (#215)
  • 5b117a6 Revert "Migrate to pyproject.toml (#214)" (#217)
  • 54c368b Migrate to pyproject.toml (#214)
  • 2e8af22 Add DOC003 to check docstring style mismatch (#207)
  • 94039b2 Add new config option for documenting star arguments (#206)
  • 22b9b37 Fix false positive DOC405 & DOC201 for bare returns (#205)
  • Additional commits viewable in compare view

Updates black from 24.10.0 to 25.1.0

Release notes

Sourced from black's releases.

25.1.0

Highlights

This release introduces the new 2025 stable style (#4558), stabilizing the following changes:

  • Normalize casing of Unicode escape characters in strings to lowercase (#2916)
  • Fix inconsistencies in whether certain strings are detected as docstrings (#4095)
  • Consistently add trailing commas to typed function parameters (#4164)
  • Remove redundant parentheses in if guards for case blocks (#4214)
  • Add parentheses to if clauses in case blocks when the line is too long (#4269)
  • Whitespace before # fmt: skip comments is no longer normalized (#4146)
  • Fix line length computation for certain expressions that involve the power operator (#4154)
  • Check if there is a newline before the terminating quotes of a docstring (#4185)
  • Fix type annotation spacing between * and more complex type variable tuple (#4440)

The following changes were not in any previous release:

  • Remove parentheses around sole list items (#4312)
  • Generic function definitions are now formatted more elegantly: parameters are split over multiple lines first instead of type parameter definitions (#4553)

Stable style

  • Fix formatting cells in IPython notebooks with magic methods and starting or trailing empty lines (#4484)
  • Fix crash when formatting with statements containing tuple generators/unpacking (#4538)

Preview style

  • Fix/remove string merging changing f-string quotes on f-strings with internal quotes (#4498)
  • Collapse multiple empty lines after an import into one (#4489)
  • Prevent string_processing and wrap_long_dict_values_in_parens from removing parentheses around long dictionary values (#4377)
  • Move wrap_long_dict_values_in_parens from the unstable to preview style (#4561)

Packaging

  • Store license identifier inside the License-Expression metadata field, see PEP 639. (#4479)

Performance

  • Speed up the is_fstring_start function in Black's tokenizer (#4541)

Integrations

  • If using stdin with --stdin-filename set to a force excluded path, stdin won't be

... (truncated)

Changelog

Sourced from black's changelog.

25.1.0

Highlights

This release introduces the new 2025 stable style (#4558), stabilizing the following changes:

  • Normalize casing of Unicode escape characters in strings to lowercase (#2916)
  • Fix inconsistencies in whether certain strings are detected as docstrings (#4095)
  • Consistently add trailing commas to typed function parameters (#4164)
  • Remove redundant parentheses in if guards for case blocks (#4214)
  • Add parentheses to if clauses in case blocks when the line is too long (#4269)
  • Whitespace before # fmt: skip comments is no longer normalized (#4146)
  • Fix line length computation for certain expressions that involve the power operator (#4154)
  • Check if there is a newline before the terminating quotes of a docstring (#4185)
  • Fix type annotation spacing between * and more complex type variable tuple (#4440)

The following changes were not in any previous release:

  • Remove parentheses around sole list items (#4312)
  • Generic function definitions are now formatted more elegantly: parameters are split over multiple lines first instead of type parameter definitions (#4553)

Stable style

  • Fix formatting cells in IPython notebooks with magic methods and starting or trailing empty lines (#4484)
  • Fix crash when formatting with statements containing tuple generators/unpacking (#4538)

Preview style

  • Fix/remove string merging changing f-string quotes on f-strings with internal quotes (#4498)
  • Collapse multiple empty lines after an import into one (#4489)
  • Prevent string_processing and wrap_long_dict_values_in_parens from removing parentheses around long dictionary values (#4377)
  • Move wrap_long_dict_values_in_parens from the unstable to preview style (#4561)

Packaging

  • Store license identifier inside the License-Expression metadata field, see PEP 639. (#4479)

Performance

  • Speed up the is_fstring_start function in Black's tokenizer (#4541)

Integrations

... (truncated)

Commits

Updates pylint from 3.3.3 to 3.3.6

Commits

Updates mypy from 1.14.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Different Property Getter and Setter Types

Mypy now supports using different types for property getter and setter.

class A:
    value: int
@property
def f(self) -> int:
    return self.value
@f.setter
def f(self, x: str | int) -> None:
    try:
        self.value = int(x)
    except ValueError:
        raise Exception(f"'{x}' is not a valid value for 'f'")

Contributed by Ivan Levkivskyi (PR 18510)

Selectively Disable Deprecated Warnings

It's now possible to selectively disable warnings generated from warnings.deprecated using the --deprecated-calls-exclude option.

# mypy --enable-error-code deprecated
#      --deprecated-calls-exclude=foo.A
import foo
foo.A().func()  # OK, the deprecated warning is ignored
file foo.py
from typing_extensions import deprecated
class A:
@​deprecated("Use A.func2 instead")
def func(self): pass

Contributed by Marc Mueller (PR 18641)

Mypy 1.15

We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI).

... (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 types-requests from 2.32.0.20241016 to 2.32.0.20250306

Commits

Updates types-pytz from 2024.2.0.20241221 to 2025.2.0.20250326

Commits

Updates poethepoet from 0.32.0 to 0.33.1

Release notes

Sourced from poethepoet's releases.

0.33.1

Fixes

New Contributors

Full Changelog: nat-n/poethepoet@v0.33.0...v0.33.1

0.33.0

Enhancements

Fixes

New Contributors

Full Changelog: nat-n/poethepoet@v0.32.2...v0.33.0

0.32.2

Fixes

New Contributors

Full Changelog: nat-n/poethepoet@v0.32.1...v0.32.2

0.32.1

Enhancements

Full Changelog: nat-n/poethepoet@v0.32.0...v0.32.1

Commits

Updates isort from 5.13.2 to 6.0.1

Release notes

Sourced from isort's releases.

6.0.1

Changes

🪲 Fixes

👷 Continuous Integration

6.0.0

Changes

💥 Breaking Changes

🚀 Features

🪲 Fixes

... (truncated)

Changelog

Sourced from isort's changelog.

Changelog

NOTE: isort follows the semver versioning standard. Find out more about isort's release policy here.

Commits

Updates types-protobuf from 5.29.1.20241207 to 5.29.1.20250315

Commits

Updates licensecheck from 2024.3 to 2025.1.0

Release notes

Sourced from licensecheck's releases.

2025.1.0 - 2025/03/26

  • Updated internal machineary
  • Separate --extras and --groups

2025.0.1 - 2025/03/16

2025

Note that this should address many of the open issues, however as the code base is currently being refactored may be less stable/ reliable than typical releases!

Changelog

Sourced from licensecheck's changelog.

2025.1.0 - 2025/03/26

  • Updated internal machineary
  • Separate --extras and --groups

2025.0.1 - 2025/03/16

  • update the cli interface to remove some confusing functionality
  • refactor the library / code qa improvements
  • Allow for alias of classifier in setup.cfg, thanks https://github.com/ericwb: #106
  • Add support for SPDX license expression metadata after PEP 639: #107
  • Add use regex/glob pattern to ignore multiple packages, thanks https://github.com/JulianKimmig: #108
  • Prioritise ['project'] table over ['tool.poetry'] in pyproject.toml: #104
  • Add option to show only failing packages: #98
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

github-actions bot and others added 2 commits March 27, 2025 18:51
Bumps the development-dependencies group in /demos/python/sdk_wireless_camera_control with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.2` |
| [black](https://github.com/psf/black) | `24.10.0` | `25.1.0` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.6` |
| [mypy](https://github.com/python/mypy) | `1.14.1` | `1.15.0` |
| [types-requests](https://github.com/python/typeshed) | `2.32.0.20241016` | `2.32.0.20250306` |
| [types-pytz](https://github.com/python/typeshed) | `2024.2.0.20241221` | `2025.2.0.20250326` |
| [poethepoet](https://github.com/nat-n/poethepoet) | `0.32.0` | `0.33.1` |
| [isort](https://github.com/PyCQA/isort) | `5.13.2` | `6.0.1` |
| [types-protobuf](https://github.com/python/typeshed) | `5.29.1.20241207` | `5.29.1.20250315` |
| [licensecheck](https://github.com/FHPythonUtils/LicenseCheck) | `2024.3` | `2025.1.0` |


Updates `pydoclint` from 0.5.14 to 0.6.2
- [Release notes](https://github.com/jsh9/pydoclint/releases)
- [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md)
- [Commits](jsh9/pydoclint@0.5.14...0.6.2)

Updates `black` from 24.10.0 to 25.1.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@24.10.0...25.1.0)

Updates `pylint` from 3.3.3 to 3.3.6
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.3.3...v3.3.6)

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 `types-requests` from 2.32.0.20241016 to 2.32.0.20250306
- [Commits](https://github.com/python/typeshed/commits)

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

Updates `poethepoet` from 0.32.0 to 0.33.1
- [Release notes](https://github.com/nat-n/poethepoet/releases)
- [Commits](nat-n/poethepoet@v0.32.0...v0.33.1)

Updates `isort` from 5.13.2 to 6.0.1
- [Release notes](https://github.com/PyCQA/isort/releases)
- [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md)
- [Commits](PyCQA/isort@5.13.2...6.0.1)

Updates `types-protobuf` from 5.29.1.20241207 to 5.29.1.20250315
- [Commits](https://github.com/python/typeshed/commits)

Updates `licensecheck` from 2024.3 to 2025.1.0
- [Release notes](https://github.com/FHPythonUtils/LicenseCheck/releases)
- [Changelog](https://github.com/FHPythonUtils/LicenseCheck/blob/master/CHANGELOG.md)
- [Commits](FHPythonUtils/LicenseCheck@2024.3...2025.1.0)

---
updated-dependencies:
- dependency-name: pydoclint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: types-requests
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: types-pytz
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: poethepoet
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: isort
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: types-protobuf
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: licensecheck
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from tcamise-gpsw March 27, 2025 18:58
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python sdk Python SDK labels Mar 27, 2025
@tcamise-gpsw
Copy link
Copy Markdown
Collaborator

this will be handled in the production PR

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 27, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@tcamise-gpsw tcamise-gpsw deleted the dependabot/pip/demos/python/sdk_wireless_camera_control/development-dependencies-87f5f4bcc6 branch March 27, 2025 19:41
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 sdk Python SDK

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant