Bump the python-requirements group in /requirements with 5 updates
Bumps the python-requirements group in /requirements with 5 updates:
| Package | From | To |
|---|---|---|
| mypy | 1.9.0 |
1.10.0 |
| pallets-sphinx-themes | 2.1.2 |
2.1.3 |
| pyright | 1.1.359 |
1.1.360 |
| pytest | 8.1.1 |
8.2.0 |
| tox | 4.14.2 |
4.15.0 |
Updates mypy from 1.9.0 to 1.10.0
Changelog
Sourced from mypy's changelog.
Mypy Release Notes
Next release
Mypy 1.10
We’ve just uploaded mypy 1.10 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.
Support TypeIs (PEP 742)
Mypy now supports
TypeIs(PEP 742), which allows functions to narrow the type of a value, similar toisinstance(). UnlikeTypeGuard,TypeIscan narrow in both theifandelsebranches of an if statement:from typing_extensions import TypeIsdef is_str(s: object) -> TypeIs[str]: return isinstance(s, str)
def f(o: str | int) -> None: if is_str(o): # Type of o is 'str' ... else: # Type of o is 'int' ...
TypeIswill be added to thetypingmodule in Python 3.13, but it can be used on earlier Python versions by importing it fromtyping_extensions.This feature was contributed by Jelle Zijlstra (PR 16898).
Support TypeVar Defaults (PEP 696)
PEP 696 adds support for type parameter defaults. Example:
from typing import Generic from typing_extensions import TypeVar</tr></table>
... (truncated)
Commits
3faf0fcRemove +dev for version for release 1.10a5998d2Update CHANGELOG.md (#17159)62ea5b0Various updates to changelog for 1.10 (#17158)2f0864cUpdate CHANGELOG.md with draft for release 1.10 (#17150)e1443bbfix: incorrect returned type of access descriptors on unions of types (#16604)5161ac2Sync typeshed (#17124)e2fc1f2Fix crash when expanding invalid Unpack in aCallablealias (#17028)3ff6e47Docs: docstrings in checker.py, ast_helpers.py (#16908)732d98eFix string formatting for string enums (#16555)8019010Narrow individual items when matching a tuple to a sequence pattern (#16905)- Additional commits viewable in compare view
Updates pallets-sphinx-themes from 2.1.2 to 2.1.3
Release notes
Sourced from pallets-sphinx-themes's releases.
2.1.3
PyPI: https://pypi.org/project/Pallets-Sphinx-Themes/2.1.3/
- Allow Sphinx's parallel build feature. #88
Changelog
Sourced from pallets-sphinx-themes's changelog.
Version 2.1.3
Released 2024-04-29
- Allow Sphinx's parallel build feature. :issue:
88
Commits
Updates pyright from 1.1.359 to 1.1.360
Commits
642e0e9Pyright NPM Package update to 1.1.360 (#266)- See full diff in compare view
Updates pytest from 8.1.1 to 8.2.0
Release notes
Sourced from pytest's releases.
8.2.0
pytest 8.2.0 (2024-04-27)
Deprecations
#12069: A deprecation warning is now raised when implementations of one of the following hooks request a deprecated
py.path.localparameter instead of thepathlib.Pathparameter which replaced it:
pytest_ignore_collect{.interpreted-text role="hook"} - thepathparameter - usecollection_pathinstead.pytest_collect_file{.interpreted-text role="hook"} - thepathparameter - usefile_pathinstead.pytest_pycollect_makemodule{.interpreted-text role="hook"} - thepathparameter - usemodule_pathinstead.pytest_report_header{.interpreted-text role="hook"} - thestartdirparameter - usestart_pathinstead.pytest_report_collectionfinish{.interpreted-text role="hook"} - thestartdirparameter - usestart_pathinstead.The replacement parameters are available since pytest 7.0.0. The old parameters will be removed in pytest 9.0.0.
See
legacy-path-hooks-deprecated{.interpreted-text role="ref"} for more details.Features
#11871: Added support for reading command line arguments from a file using the prefix character
@, like e.g.:pytest @tests.txt. The file must have one argument per line.See
Read arguments from file <args-from-file>{.interpreted-text role="ref"} for details.Improvements
#11523:
pytest.importorskip{.interpreted-text role="func"} will now issue a warning if the module could be found, but raisedImportError{.interpreted-text role="class"} instead ofModuleNotFoundError{.interpreted-text role="class"}.The warning can be suppressed by passing
exc_type=ImportErrortopytest.importorskip{.interpreted-text role="func"}.See
import-or-skip-import-error{.interpreted-text role="ref"} for details.#11728: For
unittest-based tests, exceptions during class cleanup (as raised by functions registered withTestCase.addClassCleanup <unittest.TestCase.addClassCleanup>{.interpreted-text role="meth"}) are now reported instead of silently failing.#11777: Text is no longer truncated in the
short test summary infosection when-vvis given.#12112: Improved namespace packages detection when
consider_namespace_packages{.interpreted-text role="confval"} is enabled, covering more situations (like editable installs).#9502: Added
PYTEST_VERSION{.interpreted-text role="envvar"} environment variable which is defined at the start of the pytest session and undefined afterwards. It contains the value ofpytest.__version__, and among other things can be used to easily check if code is running from within a pytest run.Bug Fixes
#12065: Fixed a regression in pytest 8.0.0 where test classes containing
setup_methodand tests using@staticmethodor@classmethodwould crash withAttributeError: 'NoneType' object has no attribute 'setup_method'.Now the
request.instance <pytest.FixtureRequest.instance>{.interpreted-text role="attr"} attribute of tests using@staticmethodand@classmethodis no longerNone, but a fresh instance of the class, like in non-static methods.
... (truncated)
Commits
6bd3f31Tweak changelog for 8.2.09b6219bPrepare release version 8.2.0835765cMerge pull request #12130 from bluetech/fixtures-inline7e7503cunittest: report class cleanup exceptions (#12250)882c4dafixtures: inlinefail_fixturefunc2e8fb9ffixtures: extract a_check_fixturedefmethodacf2971fixtures: inline_getnextfixturedefinto_get_active_fixturedef3c77aecfixtures: move "request" check earlyd217d68fixtures: inline_compute_fixture_value530be28fixtures: use early return in_get_active_fixturedef- Additional commits viewable in compare view
Updates tox from 4.14.2 to 4.15.0
Release notes
Sourced from tox's releases.
4.15.0
What's Changed
- Remove duplicated and misleading configuration section by
@jugmac00in tox-dev/tox#3251- Fix dropped leading characters
cfrom constraints' packages by@jugmac00in tox-dev/tox#3250- Fix type-checking by
@stefanorin tox-dev/tox#3260- Update installation.rst by
@shenxianpengin tox-dev/tox#3257- Allow appending to deps with the command line by
@stefanorin tox-dev/tox#3259- Support multiple override appends by
@amitschangin tox-dev/tox#3261- Add bang to invert exit code by
@sillydan1in tox-dev/tox#3271- fix(parser): Fix --discover parsed incorrectly from env by
@mimre25in tox-dev/tox#3274New Contributors
@shenxianpengmade their first contribution in tox-dev/tox#3257@amitschangmade their first contribution in tox-dev/tox#3261@sillydan1made their first contribution in tox-dev/tox#3271@mimre25made their first contribution in tox-dev/tox#3274Full Changelog: https://github.com/tox-dev/tox/compare/4.14.2...4.15.0
Changelog
Sourced from tox's changelog.
v4.15.0 (2024-04-26)
Features - 4.15.0
- Add support for multiple appending override options (-x, --override) on command line - by :user:`amitschang`. (:issue:`3261`) - Add support for inverting exit code success criteria using bang (!) (:issue:`3271`)Bugfixes - 4.15.0
- Fix issue that the leading character
cwas dropped from packages in constraints files - by :user:jugmac00. (:issue:3247)- Allow appending to
depswith--override testenv.deps+=foo- by :user:stefanor. (:issue:3256)- Fix non-existing branch
rewritein the documentation tomain. (:issue:3257)- Update test typing for build 1.2.0, which has an explicit
Distributiontype - by :user:stefanor. (:issue:3260)- Fix broken input parsing for
--discoverflag. - by :user:mimre25(:issue:3272)Improved Documentation - 4.15.0
- Rephrase ``--discover`` flag's description to avoid confusion between paths and executables. - by :user:`mimre25` (:issue:`3274`)
Commits
261b4carelease 4.15.0c54dfbdfix(parser): Fix --discover parsed incorrectly from env (#3274)809e10fAdd bang to invert exit code (#3271)822c9d0[pre-commit.ci] pre-commit autoupdate (#3267)0e5a3db[pre-commit.ci] pre-commit autoupdate (#3265)f5850c0Support multiple override appends (#3261)c2be629Allow appending to deps with the command line (#3259)d28a9eeUpdate installation.rst (#3257)a19a946[pre-commit.ci] pre-commit autoupdate (#3258)a22fe8fFix type-checking (#3260)- 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