Skip to content

Commit baa02b6

Browse files
feat: update python-typeguard to 4.4.1-1
1 parent fef5e21 commit baa02b6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+10895
-1947
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.pydevproject
33
.idea
44
.tox
5-
.coverage
5+
.coverage*
66
.cache
77
.eggs/
88
*.egg-info/
@@ -11,3 +11,6 @@ __pycache__/
1111
docs/_build/
1212
dist/
1313
build/
14+
.mypy_cache/
15+
.pytest_cache/
16+
.ruff_cache/

.pre-commit-config.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v5.0.0
4+
hooks:
5+
- id: check-case-conflict
6+
- id: check-merge-conflict
7+
- id: check-symlinks
8+
- id: check-toml
9+
- id: check-yaml
10+
- id: debug-statements
11+
- id: end-of-file-fixer
12+
- id: mixed-line-ending
13+
args: [ "--fix=lf" ]
14+
- id: trailing-whitespace
15+
16+
- repo: https://github.com/astral-sh/ruff-pre-commit
17+
rev: v0.7.2
18+
hooks:
19+
- id: ruff
20+
args: [--fix, --show-fixes]
21+
- id: ruff-format
22+
23+
- repo: https://github.com/pre-commit/mirrors-mypy
24+
rev: v1.13.0
25+
hooks:
26+
- id: mypy
27+
additional_dependencies: [ "typing_extensions" ]
28+
exclude: "^tests/"
29+
30+
- repo: https://github.com/pre-commit/pygrep-hooks
31+
rev: v1.10.0
32+
hooks:
33+
- id: rst-backticks
34+
- id: rst-directive-colons
35+
- id: rst-inline-touching-normal
36+
ci:
37+
autoupdate_schedule: quarterly

.readthedocs.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-22.04
5+
tools:
6+
python: "3.11"
7+
8+
sphinx:
9+
configuration: docs/conf.py
10+
fail_on_warning: true
11+
12+
python:
13+
install:
14+
- method: pip
15+
path: .
16+
extra_requirements: [doc]

.travis.yml

Lines changed: 0 additions & 58 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 0 additions & 121 deletions
This file was deleted.

0 commit comments

Comments
 (0)