Bump the dev-dependencies group across 1 directory with 3 updates by dependabot[bot] · Pull Request #134 · bretterer/rivian-python-client
Bumps the dev-dependencies group with 3 updates in the / directory: pytest, mypy and ruff.
Updates pytest from 8.3.4 to 8.3.5
Release notes
Sourced from pytest's releases.
8.3.5
pytest 8.3.5 (2025-03-02)
Bug fixes
- #11777: Fixed issue where sequences were still being shortened even with
-vvverbosity.- #12888: Fixed broken input when using Python 3.13+ and a
libeditbuild of Python, such as on macOS or with uv-managed Python binaries from thepython-build-standaloneproject. This could manifest e.g. by a broken prompt when usingPdb, or seeing empty inputs with manual usage ofinput()and suspended capturing.- #13026: Fixed
AttributeError{.interpreted-text role="class"} crash when using--import-mode=importlibwhen top-level directory same name as another module of the standard library.- #13053: Fixed a regression in pytest 8.3.4 where, when using
--import-mode=importlib, a directory containing py file with the same name would cause anImportError- #13083: Fixed issue where pytest could crash if one of the collected directories got removed during collection.
Improved documentation
#12842: Added dedicated page about using types with pytest.
See
types{.interpreted-text role="ref"} for detailed usage.Contributor-facing changes
Commits
b55ab2aPrepare release version 8.3.5e217726Added dedicated page about using types with pytest #12842 (#12963) (#13260)2fa3f83Add more resources and studies to flaky tests page in docs (#13250) (#13259)e5c2efeMerge pull request #13256 from webknjaz/maintenance/towncrier-bump (#13258)3419674Merge pull request #13187 from pytest-dev/patchback/backports/8.3.x/b4009b319...b75cfb1Add readline workaround for libedit (#13176)edbfff7doc: Clarify capturing .readouterr() return value (#13222) (#13225)2ebba00Merge pull request #13199 from jakkdl/tox_docs_no_fetch (#13200)eb6496bdoc: Change training to remote only (#13196) (#13197)78cf1f6ci: Bump build-and-inspect-python-package (#13188)- Additional commits viewable in compare view
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.deprecatedusing the--deprecated-calls-excludeoption.# 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): passContributed by Marc Mueller (PR 18641)
Mypy 1.15
We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI).
... (truncated)
Commits
9397454remove +dev from version ahead of final release686b591remove "unreleased" from 1.15 changelog entrycb4b243Various small updates to 1.15 changelog (#18599)1a26502Prepare changelog for 1.15 release (#18583)d4515e4Fix a few PR links in the changelog (#18586)f83b643Add object self-type to tuple test fixture (#18592)ebc2cb8Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)63c251eempty commit to trigger wheel rebuildc30573eFix literal context for ternary expressions (for real) (#18545)23d862dFix isinstance with explicit (non generic) type alias (#18512)- Additional commits viewable in compare view
Updates ruff from 0.9.4 to 0.9.9
Release notes
Sourced from ruff's releases.
0.9.9
Release Notes
Preview features
- Fix caching of unsupported-syntax errors (#16425)
Bug fixes
- Only show unsupported-syntax errors in editors when preview mode is enabled (#16429)
Contributors
Install ruff 0.9.9
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.9.9/ruff-installer.sh | shInstall prebuilt binaries via powershell script
powershell -ExecutionPolicy ByPass -c "irm https://github.com/astral-sh/ruff/releases/download/0.9.9/ruff-installer.ps1 | iex"Download ruff 0.9.9
File Platform Checksum ruff-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum ruff-x86_64-apple-darwin.tar.gz Intel macOS checksum ruff-aarch64-pc-windows-msvc.zip ARM64 Windows checksum ruff-i686-pc-windows-msvc.zip x86 Windows checksum ruff-x86_64-pc-windows-msvc.zip x64 Windows checksum ruff-aarch64-unknown-linux-gnu.tar.gz ARM64 Linux checksum ruff-i686-unknown-linux-gnu.tar.gz x86 Linux checksum ruff-powerpc64-unknown-linux-gnu.tar.gz PPC64 Linux checksum ruff-powerpc64le-unknown-linux-gnu.tar.gz PPC64LE Linux checksum ruff-s390x-unknown-linux-gnu.tar.gz S390x Linux checksum ruff-x86_64-unknown-linux-gnu.tar.gz x64 Linux checksum ruff-armv7-unknown-linux-gnueabihf.tar.gz ARMv7 Linux checksum ruff-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
... (truncated)
Changelog
Sourced from ruff's changelog.
0.9.9
Preview features
- Fix caching of unsupported-syntax errors (#16425)
Bug fixes
- Only show unsupported-syntax errors in editors when preview mode is enabled (#16429)
0.9.8
Preview features
- Start detecting version-related syntax errors in the parser (#16090)
Rule changes
- [
pylint] Mark fix unsafe (PLW1507) (#16343)- [
pylint] Catchcase np.nan/case math.naninmatchstatements (PLW0177) (#16378)- [
ruff] Add more Pydantic models variants to the list of default copy semantics (RUF012) (#16291)Server
- Avoid indexing the project if
configurationPreferenceiseditorOnly(#16381)- Avoid unnecessary info at non-trace server log level (#16389)
- Expand
ruff.configurationto allow inline config (#16296)- Notify users for invalid client settings (#16361)
Configuration
- Add
per-file-target-versionoption (#16257)Bug fixes
- [
refurb] Do not consider docstring(s) (FURB156) (#16391)- [
flake8-self] Ignore attribute accesses on instance-like variables (SLF001) (#16149)- [
pylint] Fix false positives, add missing methods, and support positional-only parameters (PLE0302) (#16263)- [
flake8-pyi] MarkPYI030fix unsafe when comments are deleted (#16322)Documentation
- Fix example for
S611(#16316)- Normalize inconsistent markdown headings in docstrings (#16364)
- Document MSRV policy (#16384)
0.9.7
Preview features
... (truncated)
Commits
091d0afBump version to Ruff 0.9.9 (#16434)3d72138CheckLinterSettings::previewfor version-related syntax errors (#16429)4a23756Avoid caching files with unsupported syntax errors (#16425)af62f79Prioritize "bug" label for changelog sections (#16433)0ced8d0[flake8-copyright] Add links to applicable options (CPY001) (#16421)a8e171fFix string-length limit in documentation for PYI054 (#16432)cf83584Show version-related syntax errors in the playground (#16419)764aa0eAllow passingParseOptionsto inline tests (#16357)568cf88Bump version to 0.9.8 (#16414)040071b[red-knot] Ignore surrounding whitespace when looking for `<!-- snapshot-diag...- Additional commits viewable 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 mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@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