dycw-pre-commit-hooks 0.9.13__tar.gz → 0.9.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dycw-pre-commit-hooks might be problematic. Click here for more details.
- dycw_pre_commit_hooks-0.9.14/.envrc +1 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/.pre-commit-config.yaml +4 -4
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/PKG-INFO +1 -1
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/__init__.py +1 -1
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pyproject.toml +6 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/requirements.txt +13 -11
- dycw_pre_commit_hooks-0.9.13/.envrc +0 -1
- dycw_pre_commit_hooks-0.9.13/environment.yml +0 -5
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/.github/workflows/push.yml +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/.gitignore +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/.pre-commit-hooks.yaml +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/README.md +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/common.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/py.typed +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_bump2version/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_bump2version/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_dockfmt/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_dockfmt/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_hatch_version/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_hatch_version/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_ruff_format/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_ruff_format/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_uv_pip_compile/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/pre_commit_hooks/run_uv_pip_compile/__main__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/tests/__init__.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/tests/test_main.py +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/try-repo/run-bump2version.sh +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/try-repo/run-dockfmt.sh +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/try-repo/run-hatch-version.sh +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/try-repo/run-ruff-format.sh +0 -0
- {dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/try-repo/run-uv-pip-compile.sh +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
layout pyenv 3.10.14
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
# fixers
|
|
3
3
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
4
|
-
rev: v0.3.
|
|
4
|
+
rev: v0.3.7
|
|
5
5
|
hooks:
|
|
6
6
|
- id: ruff
|
|
7
7
|
args: [--fix]
|
|
8
8
|
- repo: https://github.com/dycw/pre-commit-hooks
|
|
9
|
-
rev: 0.9.
|
|
9
|
+
rev: 0.9.13
|
|
10
10
|
hooks:
|
|
11
11
|
- id: run-hatch-version
|
|
12
12
|
- id: run-ruff-format
|
|
13
13
|
- id: run-uv-pip-compile
|
|
14
14
|
args: [--python-version=3.10]
|
|
15
15
|
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
|
|
16
|
-
rev: v2.
|
|
16
|
+
rev: v2.13.0
|
|
17
17
|
hooks:
|
|
18
18
|
- id: pretty-format-toml
|
|
19
19
|
args: [--autofix, --trailing-commas]
|
|
@@ -22,7 +22,7 @@ repos:
|
|
|
22
22
|
hooks:
|
|
23
23
|
- id: prettier
|
|
24
24
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
25
|
-
rev: v4.
|
|
25
|
+
rev: v4.6.0
|
|
26
26
|
hooks:
|
|
27
27
|
- id: check-executables-have-shebangs
|
|
28
28
|
- id: check-merge-conflict
|
|
@@ -112,6 +112,7 @@ ignore = [
|
|
|
112
112
|
"ANN102", # missing-type-cls
|
|
113
113
|
"ANN401", # dynamically-typed-expression
|
|
114
114
|
"D", # pydocstyle
|
|
115
|
+
"PT013", # pytest-incorrect-pytest-import
|
|
115
116
|
# formatter
|
|
116
117
|
"W191", # tab-indentation
|
|
117
118
|
"E111", # indentation-with-invalid-multiple
|
|
@@ -131,6 +132,11 @@ ignore = [
|
|
|
131
132
|
select = ["ALL"]
|
|
132
133
|
|
|
133
134
|
[tool.ruff.lint.extend-per-file-ignores]
|
|
135
|
+
"*.ipynb" = [
|
|
136
|
+
"F403", # undefined-local-with-import-star
|
|
137
|
+
"F405", # undefined-local-with-import-star-usage
|
|
138
|
+
"PLE1142", # await-outside-async
|
|
139
|
+
]
|
|
134
140
|
"src/tests/**/*.py" = [
|
|
135
141
|
"FBT001", # boolean-positional-arg-in-function-definition
|
|
136
142
|
"FBT003", # boolean-positional-value-in-function-call
|
|
@@ -4,6 +4,8 @@ anyio==4.3.0
|
|
|
4
4
|
# via httpx
|
|
5
5
|
attrs==23.2.0
|
|
6
6
|
# via hypothesis
|
|
7
|
+
backports-tarfile==1.1.0
|
|
8
|
+
# via jaraco-context
|
|
7
9
|
certifi==2024.2.2
|
|
8
10
|
# via
|
|
9
11
|
# httpcore
|
|
@@ -23,24 +25,24 @@ exceptiongroup==1.2.0
|
|
|
23
25
|
# dycw-utilities
|
|
24
26
|
# hypothesis
|
|
25
27
|
# pytest
|
|
26
|
-
execnet==2.
|
|
28
|
+
execnet==2.1.1
|
|
27
29
|
# via pytest-xdist
|
|
28
|
-
filelock==3.13.
|
|
30
|
+
filelock==3.13.4
|
|
29
31
|
# via virtualenv
|
|
30
32
|
h11==0.14.0
|
|
31
33
|
# via httpcore
|
|
32
34
|
hatch==1.9.4
|
|
33
35
|
hatchling==1.21.1
|
|
34
36
|
# via hatch
|
|
35
|
-
httpcore==1.0.
|
|
37
|
+
httpcore==1.0.5
|
|
36
38
|
# via httpx
|
|
37
39
|
httpx==0.27.0
|
|
38
40
|
# via hatch
|
|
39
41
|
hyperlink==21.0.0
|
|
40
42
|
# via hatch
|
|
41
|
-
hypothesis==6.
|
|
43
|
+
hypothesis==6.100.1
|
|
42
44
|
# via dycw-utilities
|
|
43
|
-
idna==3.
|
|
45
|
+
idna==3.7
|
|
44
46
|
# via
|
|
45
47
|
# anyio
|
|
46
48
|
# httpx
|
|
@@ -49,13 +51,13 @@ importlib-metadata==7.1.0
|
|
|
49
51
|
# via keyring
|
|
50
52
|
iniconfig==2.0.0
|
|
51
53
|
# via pytest
|
|
52
|
-
jaraco-classes==3.
|
|
54
|
+
jaraco-classes==3.4.0
|
|
53
55
|
# via keyring
|
|
54
|
-
jaraco-context==
|
|
56
|
+
jaraco-context==5.3.0
|
|
55
57
|
# via keyring
|
|
56
58
|
jaraco-functools==4.0.0
|
|
57
59
|
# via keyring
|
|
58
|
-
keyring==25.
|
|
60
|
+
keyring==25.1.0
|
|
59
61
|
# via hatch
|
|
60
62
|
loguru==0.7.2
|
|
61
63
|
markdown-it-py==3.0.0
|
|
@@ -115,15 +117,15 @@ tomli-w==1.0.0
|
|
|
115
117
|
# via hatch
|
|
116
118
|
tomlkit==0.12.4
|
|
117
119
|
# via hatch
|
|
118
|
-
trove-classifiers==2024.
|
|
120
|
+
trove-classifiers==2024.4.10
|
|
119
121
|
# via hatchling
|
|
120
|
-
typing-extensions==4.
|
|
122
|
+
typing-extensions==4.11.0
|
|
121
123
|
# via
|
|
122
124
|
# anyio
|
|
123
125
|
# dycw-utilities
|
|
124
126
|
userpath==1.9.2
|
|
125
127
|
# via hatch
|
|
126
|
-
virtualenv==20.25.
|
|
128
|
+
virtualenv==20.25.3
|
|
127
129
|
# via hatch
|
|
128
130
|
xdg-base-dirs==6.0.1
|
|
129
131
|
zipp==3.18.1
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
layout_anaconda
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dycw_pre_commit_hooks-0.9.13 → dycw_pre_commit_hooks-0.9.14}/try-repo/run-uv-pip-compile.sh
RENAMED
|
File without changes
|