2024-05-11 13:43:31 +08:00
|
|
|
k==24.1.1]
|
2020-10-06 09:13:05 +08:00
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
2023-01-17 18:09:19 +08:00
|
|
|
rev: v1.10.0
|
2020-10-06 09:13:05 +08:00
|
|
|
hooks:
|
|
|
|
- id: python-use-type-annotations
|
2019-07-08 15:04:19 +08:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2024-04-30 06:30:08 +08:00
|
|
|
rev: v1.10.0
|
2019-07-08 15:04:19 +08:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
2023-12-31 21:25:13 +08:00
|
|
|
files: ^(src/|testing/|scripts/)
|
2019-07-08 15:04:19 +08:00
|
|
|
args: []
|
2020-10-17 23:18:24 +08:00
|
|
|
additional_dependencies:
|
|
|
|
- iniconfig>=1.1.0
|
2020-10-29 04:21:13 +08:00
|
|
|
- attrs>=19.2.0
|
2024-04-19 03:08:28 +08:00
|
|
|
- pluggy>=1.5.0
|
2020-10-29 04:21:13 +08:00
|
|
|
- packaging
|
2021-07-06 05:26:01 +08:00
|
|
|
- tomli
|
2021-06-20 12:31:17 +08:00
|
|
|
- types-pkg_resources
|
2023-12-31 21:25:13 +08:00
|
|
|
- types-tabulate
|
fallback to native traceback when handling ExceptionGroup (take 2) [SQUASH] (#10209)
* Squashed commit of the following:
commit 41d339c46763bbe26123e1e6504b6e32290e33e1
Author: Cheukting <cheukting.ho@gmail.com>
Date: Thu Jun 23 17:01:04 2022 +0800
test in all py versions
commit b3572a5a12672228c3276fc8c8e05980dfb7888a
Author: Cheukting <cheukting.ho@gmail.com>
Date: Thu Jun 23 16:41:06 2022 +0800
add test
commit 7166a2a51e4f99046b028b663c193d8b558c7fd4
Author: Cheukting <cheukting.ho@gmail.com>
Date: Thu Jun 23 16:00:07 2022 +0800
update changelog
commit b958c73d489157f0c0d4e46425083a5e2e2bc851
Author: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Date: Thu Jun 23 07:50:52 2022 +0000
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
commit ea7f376c6ca37c40c83df0e4a1cfaaedb34bae91
Author: Cheukting <cheukting.ho@gmail.com>
Date: Thu Jun 23 15:48:21 2022 +0800
Fix MyPy
commit 97469beb1da40257e9a061a5e19548546c9312c4
Author: Cheukting <cheukting.ho@gmail.com>
Date: Thu Jun 23 15:03:48 2022 +0800
fix if ExceptionGroup not exist
commit 84e553642cd69b4d499231d733df91ebfa84c7ad
Author: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Date: Thu Jun 23 03:43:27 2022 +0000
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
commit 76bbef449b88bbd74fb5cca3b5293337a624ef03
Author: Cheukting <cheukting.ho@gmail.com>
Date: Thu Jun 23 11:40:41 2022 +0800
adding changelog
commit db82bebc5a4969e2083adcd97bdfd2a63bb17d98
Author: Cheukting <cheukting.ho@gmail.com>
Date: Thu Jun 23 11:33:10 2022 +0800
fall back to native when handeling to exception groups
* Typed ExceptionGroupTypes and changed to BaseExceptionGroup, fixed exceptionchain (excinfo->excinfo_, set reprcrash. Extended tests, though they're wip.
* added exceptiongroup to pre-commit-config, moved away from tuple to directly defining BaseExceptionGroup, added block comment, added match line for inner exception, changked mark.skipif to importorskip to not need top-level import, changed tox.ini a bit - only uncovered should now be py37 without exceptiongroup, due to hypothesis
* added py311-exceptiongroup to github CI, exceptiongroup is now a hard dependency on py<3.11, renamed bad variable names
* added use_coverage to ubuntu-py311
* import BaseExceptionGroup with explicit version check instead of try/catch
* removed from CI, added comments to tox and pre-commit
2022-08-18 00:16:32 +08:00
|
|
|
# for mypy running on python>=3.11 since exceptiongroup is only a dependency
|
|
|
|
# on <3.11
|
|
|
|
- exceptiongroup>=1.0.0rc8
|
2024-02-06 03:20:31 +08:00
|
|
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
2024-04-23 22:59:12 +08:00
|
|
|
rev: "1.8.0"
|
2024-02-06 03:20:31 +08:00
|
|
|
hooks:
|
|
|
|
- id: pyproject-fmt
|
|
|
|
# https://pyproject-fmt.readthedocs.io/en/latest/#calculating-max-supported-python-version
|
|
|
|
additional_dependencies: ["tox>=4.9"]
|
2018-05-24 20:17:09 +08:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
2024-04-28 22:11:11 +08:00
|
|
|
- id: pylint
|
|
|
|
name: pylint
|
|
|
|
entry: pylint
|
|
|
|
language: system
|
|
|
|
types: [python]
|
|
|
|
args: ["-rn", "-sn", "--fail-on=I"]
|
|
|
|
stages: [manual]
|
2018-05-24 20:17:09 +08:00
|
|
|
- id: rst
|
|
|
|
name: rst
|
2018-05-26 09:16:54 +08:00
|
|
|
entry: rst-lint --encoding utf-8
|
2020-01-25 22:31:21 +08:00
|
|
|
files: ^(RELEASING.rst|README.rst|TIDELIFT.rst)$
|
2018-05-24 20:17:09 +08:00
|
|
|
language: python
|
|
|
|
additional_dependencies: [pygments, restructuredtext_lint]
|
2018-08-02 06:21:34 +08:00
|
|
|
- id: changelogs-rst
|
2018-09-08 00:32:36 +08:00
|
|
|
name: changelog filenames
|
|
|
|
language: fail
|
2019-12-06 19:47:39 +08:00
|
|
|
entry: 'changelog files must be named ####.(breaking|bugfix|deprecation|doc|feature|improvement|trivial|vendor).rst'
|
|
|
|
exclude: changelog/(\d+\.(breaking|bugfix|deprecation|doc|feature|improvement|trivial|vendor).rst|README.rst|_template.rst)
|
2018-09-08 00:32:36 +08:00
|
|
|
files: ^changelog/
|
2019-01-21 03:59:48 +08:00
|
|
|
- id: py-deprecated
|
|
|
|
name: py library is deprecated
|
|
|
|
language: pygrep
|
2019-01-22 11:46:57 +08:00
|
|
|
entry: >
|
|
|
|
(?x)\bpy\.(
|
|
|
|
_code\.|
|
|
|
|
builtin\.|
|
|
|
|
code\.|
|
2020-07-24 15:20:37 +08:00
|
|
|
io\.|
|
2019-01-22 11:46:57 +08:00
|
|
|
path\.local\.sysfind|
|
|
|
|
process\.|
|
2020-07-24 15:20:37 +08:00
|
|
|
std\.|
|
|
|
|
error\.|
|
|
|
|
xml\.
|
2019-01-22 11:46:57 +08:00
|
|
|
)
|
2019-01-21 03:59:48 +08:00
|
|
|
types: [python]
|
2021-02-22 16:43:52 +08:00
|
|
|
- id: py-path-deprecated
|
|
|
|
name: py.path usage is deprecated
|
2022-05-17 19:09:21 +08:00
|
|
|
exclude: docs|src/_pytest/deprecated.py|testing/deprecated_test.py|src/_pytest/legacypath.py
|
2021-02-22 16:43:52 +08:00
|
|
|
language: pygrep
|
|
|
|
entry: \bpy\.path\.local
|
|
|
|
types: [python]
|