dycw-pre-commit-hooks 0.8.34__tar.gz → 0.8.36__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.

Files changed (34) hide show
  1. dycw_pre_commit_hooks-0.8.36/.envrc +1 -0
  2. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/.github/workflows/push.yml +1 -1
  3. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/.pre-commit-config.yaml +10 -7
  4. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/PKG-INFO +4 -4
  5. dycw_pre_commit_hooks-0.8.36/pre_commit_hooks/__init__.py +3 -0
  6. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/common.py +2 -0
  7. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_bump2version/__init__.py +4 -5
  8. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_bump2version/__main__.py +2 -0
  9. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_dockfmt/__init__.py +3 -5
  10. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_dockfmt/__main__.py +2 -0
  11. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_hatch_version/__init__.py +2 -0
  12. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_hatch_version/__main__.py +2 -0
  13. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_pip_compile/__init__.py +4 -7
  14. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_pip_compile/__main__.py +2 -0
  15. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_ruff_format/__init__.py +2 -0
  16. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/run_ruff_format/__main__.py +2 -0
  17. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pyproject.toml +11 -20
  18. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/requirements-dev.txt +44 -30
  19. dycw_pre_commit_hooks-0.8.36/requirements.txt +44 -0
  20. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/tests/test_main.py +2 -0
  21. dycw_pre_commit_hooks-0.8.34/.envrc +0 -1
  22. dycw_pre_commit_hooks-0.8.34/pre_commit_hooks/__init__.py +0 -1
  23. dycw_pre_commit_hooks-0.8.34/requirements.txt +0 -24
  24. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/.gitignore +0 -0
  25. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/.pre-commit-hooks.yaml +0 -0
  26. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/.rgignore +0 -0
  27. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/README.md +0 -0
  28. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/pre_commit_hooks/py.typed +0 -0
  29. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/tests/__init__.py +0 -0
  30. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/try-repo/run-bump2version.sh +0 -0
  31. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/try-repo/run-dockfmt.sh +0 -0
  32. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/try-repo/run-hatch-version.sh +0 -0
  33. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/try-repo/run-pip-compile.sh +0 -0
  34. {dycw_pre_commit_hooks-0.8.34 → dycw_pre_commit_hooks-0.8.36}/try-repo/run-ruff-format.sh +0 -0
@@ -0,0 +1 @@
1
+ layout pyenv 3.10.13
@@ -10,7 +10,7 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  steps:
12
12
  - uses: actions/checkout@v3
13
- - uses: butlerlogic/action-autotag@stable
13
+ - uses: butlerlogic/action-autotag@1.1.2 # https://github.com/ButlerLogic/action-autotag/issues/45#issuecomment-1825726927
14
14
  env:
15
15
  GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
16
16
  with:
@@ -1,22 +1,25 @@
1
+ default_language_version:
2
+ python: python3.10
3
+
1
4
  repos:
2
5
  # fixers
3
- - repo: https://github.com/charliermarsh/ruff-pre-commit
4
- rev: v0.1.6
6
+ - repo: https://github.com/astral-sh/ruff-pre-commit
7
+ rev: v0.1.11
5
8
  hooks:
6
9
  - id: ruff
7
10
  args: [--fix]
8
- - id: ruff-format
9
11
  - repo: https://github.com/dycw/pre-commit-hooks
10
- rev: 0.8.32
12
+ rev: 0.8.34
11
13
  hooks:
12
14
  - id: run-hatch-version
15
+ - id: run-ruff-format
13
16
  - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
14
- rev: v2.11.0
17
+ rev: v2.12.0
15
18
  hooks:
16
19
  - id: pretty-format-toml
17
20
  args: [--autofix, --trailing-commas]
18
21
  - repo: https://github.com/pre-commit/mirrors-prettier
19
- rev: v3.1.0
22
+ rev: v4.0.0-alpha.8
20
23
  hooks:
21
24
  - id: prettier
22
25
  - repo: https://github.com/pre-commit/pre-commit-hooks
@@ -35,7 +38,7 @@ repos:
35
38
  - id: trailing-whitespace
36
39
  # linters
37
40
  - repo: https://github.com/andreoliwa/nitpick
38
- rev: v0.34.0
41
+ rev: v0.35.0
39
42
  hooks:
40
43
  - id: nitpick-check
41
44
  - repo: https://github.com/shellcheck-py/shellcheck-py
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dycw-pre-commit-hooks
3
- Version: 0.8.34
3
+ Version: 0.8.36
4
4
  Author-email: Derek Wan <d.wan@icloud.com>
5
- Requires-Python: >=3.11
6
- Requires-Dist: dycw-utilities[click,loguru,semver]<0.19,>=0.18.12
7
- Requires-Dist: semver<3.1,>=3.0.1
5
+ Requires-Python: >=3.10
6
+ Requires-Dist: dycw-utilities[click,loguru,semver]<0.24,>=0.23.9
7
+ Requires-Dist: semver<3.1,>=3.0.2
8
8
  Requires-Dist: tomlkit<0.13,>=0.12.3
9
9
  Requires-Dist: xdg<6.1,>=6.0.0
10
10
  Provides-Extra: dev
@@ -0,0 +1,3 @@
1
+ from __future__ import annotations
2
+
3
+ __version__ = "0.8.36"
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from dataclasses import dataclass
2
4
  from hashlib import md5
3
5
  from pathlib import Path
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pathlib import Path
2
4
  from subprocess import PIPE, STDOUT, CalledProcessError, check_call
3
5
  from typing import Literal
@@ -10,9 +12,7 @@ from pre_commit_hooks.common import check_versions
10
12
 
11
13
  @command()
12
14
  @option(
13
- "--setup-cfg",
14
- is_flag=True,
15
- help="Read `setup.cfg` instead of `bumpversion.cfg`",
15
+ "--setup-cfg", is_flag=True, help="Read `setup.cfg` instead of `bumpversion.cfg`"
16
16
  )
17
17
  def main(*, setup_cfg: bool) -> bool:
18
18
  """CLI for the `run_bump2version` hook."""
@@ -34,8 +34,7 @@ def _process(*, filename: Literal["setup.cfg", ".bumpversion.cfg"]) -> bool:
34
34
  logger.exception("Failed to run {cmd!r}", cmd=" ".join(cmd))
35
35
  except FileNotFoundError:
36
36
  logger.exception(
37
- "Failed to run {cmd!r}. Is `bump2version` installed?",
38
- cmd=" ".join(cmd),
37
+ "Failed to run {cmd!r}. Is `bump2version` installed?", cmd=" ".join(cmd)
39
38
  )
40
39
  else:
41
40
  _trim_trailing_whitespaces(path)
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pre_commit_hooks.run_bump2version import main
2
4
 
3
5
  if __name__ == "__main__":
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from collections.abc import Iterator
2
4
  from pathlib import Path
3
5
  from subprocess import check_output
@@ -11,11 +13,7 @@ from click import argument, command
11
13
  "paths",
12
14
  nargs=-1,
13
15
  type=click.Path(
14
- exists=True,
15
- file_okay=True,
16
- dir_okay=False,
17
- readable=True,
18
- path_type=Path,
16
+ exists=True, file_okay=True, dir_okay=False, readable=True, path_type=Path
19
17
  ),
20
18
  )
21
19
  def main(paths: tuple[Path, ...], /) -> bool:
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pre_commit_hooks.run_dockfmt import main
2
4
 
3
5
  if __name__ == "__main__":
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pathlib import Path
2
4
  from subprocess import PIPE, STDOUT, CalledProcessError, check_call
3
5
  from typing import cast
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pre_commit_hooks.run_hatch_version import main
2
4
 
3
5
  if __name__ == "__main__":
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from collections.abc import Iterable, Iterator
2
4
  from pathlib import Path
3
5
  from re import MULTILINE, sub
@@ -13,8 +15,7 @@ from tomlkit import dumps, parse
13
15
  from tomlkit.container import Container
14
16
  from utilities.datetime import get_now
15
17
  from utilities.git import get_repo_root
16
- from utilities.pathlib import PathLike
17
- from utilities.typing import IterableStrs
18
+ from utilities.types import IterableStrs, PathLike
18
19
 
19
20
  from pre_commit_hooks.common import PYPROJECT_TOML, read_pyproject
20
21
 
@@ -24,11 +25,7 @@ from pre_commit_hooks.common import PYPROJECT_TOML, read_pyproject
24
25
  "paths",
25
26
  nargs=-1,
26
27
  type=click.Path(
27
- exists=True,
28
- file_okay=True,
29
- dir_okay=False,
30
- readable=True,
31
- path_type=Path,
28
+ exists=True, file_okay=True, dir_okay=False, readable=True, path_type=Path
32
29
  ),
33
30
  )
34
31
  def main(paths: tuple[Path, ...]) -> bool:
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pre_commit_hooks.run_pip_compile import main
2
4
 
3
5
  if __name__ == "__main__":
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from collections.abc import Iterator
2
4
  from contextlib import contextmanager
3
5
  from subprocess import CalledProcessError, check_call
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pre_commit_hooks.run_ruff_format import main
2
4
 
3
5
  if __name__ == "__main__":
@@ -9,22 +9,18 @@ requires = ["hatchling"]
9
9
  [project]
10
10
  authors = [{name = "Derek Wan", email = "d.wan@icloud.com"}]
11
11
  dependencies = [
12
- "dycw-utilities[click,loguru,semver] >= 0.18.12, < 0.19",
13
- "semver >= 3.0.1, < 3.1",
12
+ "dycw-utilities[click,loguru,semver] >= 0.23.9, < 0.24",
13
+ "semver >= 3.0.2, < 3.1",
14
14
  "tomlkit >= 0.12.3, < 0.13",
15
15
  "xdg >= 6.0.0, < 6.1",
16
16
  ]
17
17
  dynamic = ["version"]
18
18
  name = "dycw-pre-commit-hooks"
19
19
  readme = "README.md"
20
- requires-python = ">= 3.11"
20
+ requires-python = ">= 3.10"
21
21
 
22
22
  [project.optional-dependencies]
23
- dev = [
24
- "dycw-utilities[hatch,test]",
25
- "pip-tools",
26
- "pre-commit",
27
- ]
23
+ dev = ["dycw-utilities[hatch,test]", "pip-tools", "pre-commit"]
28
24
 
29
25
  [project.scripts]
30
26
  run-bump2version = "pre_commit_hooks.run_bump2version:main"
@@ -65,7 +61,7 @@ path = "src/pre_commit_hooks/__init__.py"
65
61
  # nitpick
66
62
  [tool.nitpick]
67
63
  style = [
68
- "https://raw.githubusercontent.com/dycw/nitpick/master/styles/3.11.toml",
64
+ "https://raw.githubusercontent.com/dycw/nitpick/master/styles/3.10.toml",
69
65
  "https://raw.githubusercontent.com/dycw/nitpick/master/styles/common.toml",
70
66
  "https://raw.githubusercontent.com/dycw/nitpick/master/styles/pip-compile-no-hashes.toml",
71
67
  ]
@@ -75,7 +71,7 @@ style = [
75
71
  exclude = ["**/__pycache__", ".direnv", ".git"]
76
72
  executionEnvironments = [{root = "src"}]
77
73
  include = ["src"]
78
- pythonVersion = "3.11"
74
+ pythonVersion = "3.10"
79
75
  reportImplicitOverride = "error"
80
76
  reportImportCycles = "error"
81
77
  reportMissingSuperCall = "error"
@@ -99,15 +95,7 @@ typeCheckingMode = "strict"
99
95
  [tool.pytest]
100
96
 
101
97
  [tool.pytest.ini_options]
102
- addopts = [
103
- "-rsxX",
104
- "--color=auto",
105
- "--cov=pre_commit_hooks",
106
- "--cov-config=pyproject.toml",
107
- "--cov-report=html",
108
- "--strict-markers",
109
- "--tb=native",
110
- ]
98
+ addopts = ["-rsxX", "--color=auto", "--strict-markers"]
111
99
  filterwarnings = ["error"]
112
100
  minversion = "7.0"
113
101
  testpaths = ["src/tests"]
@@ -182,7 +170,7 @@ select = [
182
170
  "YTT", # flake8-2020
183
171
  ]
184
172
  src = ["src"]
185
- target-version = "py311"
173
+ target-version = "py310"
186
174
 
187
175
  [tool.ruff.lint.extend-per-file-ignores]
188
176
  "src/tests/**/*.py" = [
@@ -194,3 +182,6 @@ target-version = "py311"
194
182
 
195
183
  [tool.ruff.lint.flake8-tidy-imports]
196
184
  ban-relative-imports = "all"
185
+
186
+ [tool.ruff.lint.isort]
187
+ required-imports = ["from __future__ import annotations"]
@@ -1,15 +1,21 @@
1
1
  #
2
- # This file is autogenerated by pip-compile with Python 3.11
2
+ # This file is autogenerated by pip-compile with Python 3.12
3
3
  # by the following command:
4
4
  #
5
5
  # pip-compile --allow-unsafe --extra=dev --output-file=requirements-dev.txt pyproject.toml
6
6
  #
7
- anyio==4.0.0
7
+ anyio==4.2.0
8
8
  # via httpx
9
9
  atomicwrites==1.4.1
10
10
  # via dycw-utilities
11
+ beartype==0.16.4
12
+ # via dycw-utilities
13
+ bidict==0.22.1
14
+ # via dycw-utilities
11
15
  build==1.0.3
12
16
  # via pip-tools
17
+ cachetools==5.3.2
18
+ # via dycw-utilities
13
19
  certifi==2023.11.17
14
20
  # via
15
21
  # httpcore
@@ -22,41 +28,41 @@ click==8.1.7
22
28
  # hatch
23
29
  # pip-tools
24
30
  # userpath
25
- distlib==0.3.7
31
+ distlib==0.3.8
26
32
  # via virtualenv
27
- dycw-utilities[click,hatch,loguru,semver,test]==0.18.14
33
+ dycw-utilities[click,hatch,loguru,semver,test]==0.23.9
28
34
  # via
29
35
  # dycw-pre-commit-hooks (pyproject.toml)
30
36
  # dycw-utilities
31
37
  editables==0.5
32
38
  # via hatchling
33
- exceptiongroup==1.1.3
39
+ exceptiongroup==1.2.0
34
40
  # via dycw-utilities
35
41
  execnet==2.0.2
36
42
  # via pytest-xdist
37
43
  filelock==3.13.1
38
44
  # via virtualenv
45
+ frozendict==2.4.0
46
+ # via dycw-utilities
39
47
  h11==0.14.0
40
48
  # via httpcore
41
- hatch==1.7.0
49
+ hatch==1.9.1
42
50
  # via dycw-utilities
43
- hatchling==1.18.0
51
+ hatchling==1.21.0
44
52
  # via hatch
45
53
  httpcore==1.0.2
46
54
  # via httpx
47
- httpx==0.25.1
55
+ httpx==0.26.0
48
56
  # via hatch
49
57
  hyperlink==21.0.0
50
58
  # via hatch
51
- identify==2.5.31
59
+ identify==2.5.33
52
60
  # via pre-commit
53
- idna==3.4
61
+ idna==3.6
54
62
  # via
55
63
  # anyio
56
64
  # httpx
57
65
  # hyperlink
58
- importlib-metadata==6.8.0
59
- # via keyring
60
66
  iniconfig==2.0.0
61
67
  # via pytest
62
68
  jaraco-classes==3.3.0
@@ -70,7 +76,9 @@ markdown-it-py==3.0.0
70
76
  mdurl==0.1.2
71
77
  # via markdown-it-py
72
78
  more-itertools==10.1.0
73
- # via jaraco-classes
79
+ # via
80
+ # dycw-utilities
81
+ # jaraco-classes
74
82
  nodeenv==1.8.0
75
83
  # via pre-commit
76
84
  packaging==23.2
@@ -79,13 +87,15 @@ packaging==23.2
79
87
  # hatch
80
88
  # hatchling
81
89
  # pytest
82
- pathspec==0.11.2
90
+ pathspec==0.12.1
83
91
  # via hatchling
84
- pexpect==4.8.0
92
+ pathvalidate==3.2.0
93
+ # via dycw-utilities
94
+ pexpect==4.9.0
85
95
  # via hatch
86
96
  pip-tools==7.3.0
87
97
  # via dycw-pre-commit-hooks (pyproject.toml)
88
- platformdirs==3.11.0
98
+ platformdirs==4.1.0
89
99
  # via
90
100
  # hatch
91
101
  # virtualenv
@@ -93,17 +103,17 @@ pluggy==1.3.0
93
103
  # via
94
104
  # hatchling
95
105
  # pytest
96
- pre-commit==3.5.0
106
+ pre-commit==3.6.0
97
107
  # via dycw-pre-commit-hooks (pyproject.toml)
98
108
  ptyprocess==0.7.0
99
109
  # via pexpect
100
- pygments==2.16.1
110
+ pygments==2.17.2
101
111
  # via rich
102
- pyperclip==1.8.2
103
- # via hatch
112
+ pyhumps==3.8.0
113
+ # via dycw-utilities
104
114
  pyproject-hooks==1.0.0
105
115
  # via build
106
- pytest==7.4.3
116
+ pytest==7.4.4
107
117
  # via
108
118
  # dycw-utilities
109
119
  # pytest-instafail
@@ -113,7 +123,7 @@ pytest-instafail==0.5.0
113
123
  # via dycw-utilities
114
124
  pytest-randomly==3.15.0
115
125
  # via dycw-utilities
116
- pytest-xdist==3.4.0
126
+ pytest-xdist==3.5.0
117
127
  # via dycw-utilities
118
128
  pyyaml==6.0.1
119
129
  # via pre-commit
@@ -135,27 +145,31 @@ tomlkit==0.12.3
135
145
  # via
136
146
  # dycw-pre-commit-hooks (pyproject.toml)
137
147
  # hatch
138
- trove-classifiers==2023.11.14
148
+ tqdm==4.66.1
149
+ # via dycw-utilities
150
+ trove-classifiers==2023.11.29
139
151
  # via hatchling
140
- typing-extensions==4.8.0
152
+ typed-settings==23.1.1
153
+ # via dycw-utilities
154
+ typing-extensions==4.9.0
141
155
  # via dycw-utilities
142
156
  userpath==1.9.1
143
157
  # via hatch
144
- virtualenv==20.24.6
158
+ virtualenv==20.25.0
145
159
  # via
146
160
  # hatch
147
161
  # pre-commit
148
- wheel==0.41.3
162
+ wheel==0.42.0
149
163
  # via pip-tools
150
164
  xdg==6.0.0
151
165
  # via dycw-pre-commit-hooks (pyproject.toml)
152
- zipp==3.17.0
153
- # via importlib-metadata
166
+ zstandard==0.22.0
167
+ # via hatch
154
168
 
155
169
  # The following packages are considered to be unsafe in a requirements file:
156
- pip==23.3.1
170
+ pip==23.3.2
157
171
  # via pip-tools
158
- setuptools==68.2.2
172
+ setuptools==69.0.3
159
173
  # via
160
174
  # nodeenv
161
175
  # pip-tools
@@ -0,0 +1,44 @@
1
+ #
2
+ # This file is autogenerated by pip-compile with Python 3.12
3
+ # by the following command:
4
+ #
5
+ # pip-compile --allow-unsafe pyproject.toml
6
+ #
7
+ atomicwrites==1.4.1
8
+ # via dycw-utilities
9
+ beartype==0.16.4
10
+ # via dycw-utilities
11
+ bidict==0.22.1
12
+ # via dycw-utilities
13
+ cachetools==5.3.2
14
+ # via dycw-utilities
15
+ click==8.1.7
16
+ # via dycw-utilities
17
+ dycw-utilities[click,loguru,semver]==0.23.9
18
+ # via
19
+ # dycw-pre-commit-hooks (pyproject.toml)
20
+ # dycw-utilities
21
+ frozendict==2.4.0
22
+ # via dycw-utilities
23
+ loguru==0.7.2
24
+ # via dycw-utilities
25
+ more-itertools==10.1.0
26
+ # via dycw-utilities
27
+ pathvalidate==3.2.0
28
+ # via dycw-utilities
29
+ pyhumps==3.8.0
30
+ # via dycw-utilities
31
+ semver==3.0.2
32
+ # via
33
+ # dycw-pre-commit-hooks (pyproject.toml)
34
+ # dycw-utilities
35
+ tomlkit==0.12.3
36
+ # via dycw-pre-commit-hooks (pyproject.toml)
37
+ tqdm==4.66.1
38
+ # via dycw-utilities
39
+ typed-settings==23.1.1
40
+ # via dycw-utilities
41
+ typing-extensions==4.9.0
42
+ # via dycw-utilities
43
+ xdg==6.0.0
44
+ # via dycw-pre-commit-hooks (pyproject.toml)
@@ -1,3 +1,5 @@
1
+ from __future__ import annotations
2
+
1
3
  from pre_commit_hooks import __version__
2
4
 
3
5
 
@@ -1 +0,0 @@
1
- layout pyenv 3.11.6
@@ -1 +0,0 @@
1
- __version__ = "0.8.34"
@@ -1,24 +0,0 @@
1
- #
2
- # This file is autogenerated by pip-compile with Python 3.11
3
- # by the following command:
4
- #
5
- # pip-compile --allow-unsafe pyproject.toml
6
- #
7
- click==8.1.7
8
- # via dycw-utilities
9
- dycw-utilities[click,loguru,semver]==0.18.14
10
- # via
11
- # dycw-pre-commit-hooks (pyproject.toml)
12
- # dycw-utilities
13
- loguru==0.7.2
14
- # via dycw-utilities
15
- semver==3.0.2
16
- # via
17
- # dycw-pre-commit-hooks (pyproject.toml)
18
- # dycw-utilities
19
- tomlkit==0.12.3
20
- # via dycw-pre-commit-hooks (pyproject.toml)
21
- typing-extensions==4.8.0
22
- # via dycw-utilities
23
- xdg==6.0.0
24
- # via dycw-pre-commit-hooks (pyproject.toml)