deps(deps-dev): bump the python-development group across 1 directory with 4 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 2
(2 months ago)
(2 months ago)
(2 months ago)
dependencies python:uv
Bumps the python-development group with 4 updates in the / directory: mypy, pytest-reportportal, ruff and types-python-dateutil.
Updates mypy from 1.19.1 to 1.20.0
Changelog
Sourced from mypy's changelog.
Mypy Release Notes
Next Release
Mypy 1.20
We’ve just uploaded mypy 1.20.0 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 mypyYou can read the full documentation for this release on Read the Docs.
Planned Changes to Defaults and Flags in Mypy 2.0
As a reminder, we are planning to enable
--local-partial-typesby default in mypy 2.0, which will likely be the next feature release. This will often require at least minor code changes. This option is implicitly enabled by mypy daemon, so this makes the behavior of daemon and non-daemon modes consistent.Note that this release improves the compatibility of
--local-partial-typessignificantly to make the switch easier (see below for more).This can also be configured in a mypy configuration file (use
Falseto disable):local_partial_types = TrueFor more information, refer to the documentation.
We will also enable
--strict-bytesby default in mypy 2.0. This usually requires at most minor code changes to adopt. For more information, refer to the documentation.Finally,
--allow-redefinition-newwill be renamed to--allow-redefinition. If you want to continue using the older--allow-redefinitionsemantics which are less flexible (e.g. limited support for conditional redefinitions), you can switch to--allow-redefinition-old, which is currently supported as an alias to the legacy--allow-redefinitionbehavior. To use--allow-redefinitionin the upcoming mypy 2.0, you can't use--no-local-partial-types. For more information, refer to the documentation.Better Type Narrowing
Mypy's implementation of narrowing has been substantially reworked. Mypy will now narrow more aggressively, more consistently, and more correctly. In particular, you are likely to notice new narrowing behavior in equality expressions (
==), containment expressions (in),
... (truncated)
Commits
770d3caRemove +dev from version4738ffaChangelog updates for 1.20 (#21109)b4f07a7Use 'native-parser' instead of 'native-parse' for optional dependency (#21115)7bec7b7[mypyc] Document librt and librt.base64 (#21114)c482596--allow-redefinition-new is no longer experimental (#21110)c916ca3sdist: includemisc/{diff-cache,apply-cache-diff}.pyfor `mypy/test/test_di...b137e4e[mypyc] Speed up native-to-native imports within the same group (#21101)978b711[mypyc] Fix range loop variable off-by-one after loop exit (#21098)67ada30[stubtest] Check runtime availability of private types not marked `@type_chec...bdef6eflibrt cache tests: build respecting MYPY_TEST_PREFIX (#21097)- Additional commits viewable in compare view
Updates pytest-reportportal from 5.6.1 to 5.6.4
Release notes
Sourced from pytest-reportportal's releases.
Release 5.6.4
Fixed
- Agent crash in certain
pytest-bddcases, by@HardNorthRelease 5.6.3
Changed
- Client version updated to 5.7.2, by
@HardNorthRemoved
aenumdependency, by@HardNorthdilldependency, by@HardNorthRelease 5.6.2
Added
rp_launch_uuidconfiguration parameter, by@HardNorthrp_launch_attributescmd argument, by@fahadnaeemkhanChanged
- Client version updated on 5.7.1, by
@HardNorth
Changelog
Sourced from pytest-reportportal's changelog.
[5.6.4]
Fixed
- Agent crash in certain
pytest-bddcases, by@HardNorth[5.6.3]
Changed
- Client version updated to 5.7.2, by
@HardNorthRemoved
aenumdependency, by@HardNorthdilldependency, by@HardNorth[5.6.2]
Added
rp_launch_uuidconfiguration parameter, by@HardNorthrp_launch_attributescmd argument, by@fahadnaeemkhanChanged
- Client version updated on 5.7.1, by
@HardNorth
Commits
ee8592cMerge pull request #417 from reportportal/developd226a59Fix import82cf62aRemove redundant test581f1cfFixed Agent crash in certainpytest-bddcasesb56870bRemove parameter escape, as now it's handled by client7d2fdfaVersion updatea0e5078Changelog update763cd07Merge pull request #416 from reportportal/develop62e4d0dClient version updated3d2e2bFix tests- Additional commits viewable in compare view
Updates ruff from 0.15.8 to 0.15.9
Release notes
Sourced from ruff's releases.
0.15.9
Release Notes
Released on 2026-04-02.
Preview features
- [
pyflakes] Flag annotated variable redeclarations asF811in preview mode (#24244)- [
ruff] Allow dunder-named assignments in non-strict mode forRUF067(#24089)Bug fixes
- [
flake8-errmsg] Avoid shadowing existingmsgin fix forEM101(#24363)- [
flake8-simplify] Ignore pre-initialization references inSIM113(#24235)- [
pycodestyle] FixW391fixes for consecutive empty notebook cells (#24236)- [
pyupgrade] FixUP008nested class matching (#24273)- [
pyupgrade] Ignore strings with string-only escapes (UP012) (#16058)- [
ruff]RUF072: skip formfeeds on dedent (#24308)- [
ruff] Avoid re-using symbol inRUF024fix (#24316)- [
ruff] Parenthesize expression inRUF050fix (#24234)- Disallow starred expressions as values of starred expressions (#24280)
Rule changes
- [
flake8-simplify] SuppressSIM105forexcept*before Python 3.12 (#23869)- [
pyflakes] ExtendF507to flag%-format strings with zero placeholders (#24215)- [
pyupgrade]UP018should detect more unnecessarily wrapped literals (UP018) (#24093)- [
pyupgrade] FixUP008callable scope handling to support lambdas (#24274)- [
ruff]RUF010: Mark fix as unsafe when it deletes a comment (#24270)Formatter
- Add
nested-string-quote-styleformatting option (#24312)Documentation
- [
flake8-bugbear] Clarify RUF071 fix safety for non-path string comparisons (#24149)- [
flake8-type-checking] Clarify import cycle wording forTC001/TC002/TC003(#24322)Other changes
- Avoid rendering fix lines with trailing whitespace after
|(#24343)Contributors
... (truncated)
Changelog
Sourced from ruff's changelog.
0.15.9
Released on 2026-04-02.
Preview features
- [
pyflakes] Flag annotated variable redeclarations asF811in preview mode (#24244)- [
ruff] Allow dunder-named assignments in non-strict mode forRUF067(#24089)Bug fixes
- [
flake8-errmsg] Avoid shadowing existingmsgin fix forEM101(#24363)- [
flake8-simplify] Ignore pre-initialization references inSIM113(#24235)- [
pycodestyle] FixW391fixes for consecutive empty notebook cells (#24236)- [
pyupgrade] FixUP008nested class matching (#24273)- [
pyupgrade] Ignore strings with string-only escapes (UP012) (#16058)- [
ruff]RUF072: skip formfeeds on dedent (#24308)- [
ruff] Avoid re-using symbol inRUF024fix (#24316)- [
ruff] Parenthesize expression inRUF050fix (#24234)- Disallow starred expressions as values of starred expressions (#24280)
Rule changes
- [
flake8-simplify] SuppressSIM105forexcept*before Python 3.12 (#23869)- [
pyflakes] ExtendF507to flag%-format strings with zero placeholders (#24215)- [
pyupgrade]UP018should detect more unnecessarily wrapped literals (UP018) (#24093)- [
pyupgrade] FixUP008callable scope handling to support lambdas (#24274)- [
ruff]RUF010: Mark fix as unsafe when it deletes a comment (#24270)Formatter
- Add
nested-string-quote-styleformatting option (#24312)Documentation
- [
flake8-bugbear] Clarify RUF071 fix safety for non-path string comparisons (#24149)- [
flake8-type-checking] Clarify import cycle wording forTC001/TC002/TC003(#24322)Other changes
- Avoid rendering fix lines with trailing whitespace after
|(#24343)Contributors
... (truncated)
Commits
724ccc1Bump 0.15.9 (#24369)96d9e09[ty] Move thedeferredsubmodule insideinfer/builder(#24368)130da28[ty] Infer theextra_itemskeyword argument to class-based TypedDicts as an...a617c54[ty] Validate type qualifiers in functional TypedDict fields and the `extra_i...d851708[ty] Improve robustness of various type-qualifier-related checks (#24251)aecb587Only run the release-gate on workflow dispatch (#24366)b889571[ty] Useinfer_type_expressionfor parsing parameter annotations and return...3286a62Add a "release-gate" step to the release workflow (#24365)5f88756Disallow starred expressions as values of starred expressions (#24280)5c59f8a[pyupgrade] Ignore strings with string-only escapes (UP012) (#16058)- Additional commits viewable in compare view
Updates types-python-dateutil from 2.9.0.20260323 to 2.9.0.20260402
Commits
- See full diff 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Package Dependencies
Technical Details
| ID: | 15274507 |
| UUID: | 4217522803 |
| Node ID: | PR_kwDOPUpNZM7QeuIC |
| Host: | GitHub |
| Repository: | softwareone-platform/mpt-api-python-client |