dycw-pre-commit-hooks 0.9.15__tar.gz → 0.9.17__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 (30) hide show
  1. dycw_pre_commit_hooks-0.9.17/.envrc +1 -0
  2. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/.pre-commit-config.yaml +10 -5
  3. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/PKG-INFO +6 -5
  4. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/__init__.py +1 -1
  5. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_hatch_version/__init__.py +2 -2
  6. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_ruff_format/__init__.py +17 -24
  7. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pyproject.toml +60 -36
  8. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/requirements.txt +46 -42
  9. dycw_pre_commit_hooks-0.9.15/.envrc +0 -1
  10. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/.github/workflows/push.yml +0 -0
  11. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/.gitignore +0 -0
  12. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/.pre-commit-hooks.yaml +0 -0
  13. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/README.md +0 -0
  14. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/common.py +0 -0
  15. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/py.typed +0 -0
  16. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_bump2version/__init__.py +0 -0
  17. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_bump2version/__main__.py +0 -0
  18. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_dockfmt/__init__.py +0 -0
  19. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_dockfmt/__main__.py +0 -0
  20. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_hatch_version/__main__.py +0 -0
  21. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_ruff_format/__main__.py +0 -0
  22. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_uv_pip_compile/__init__.py +0 -0
  23. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/pre_commit_hooks/run_uv_pip_compile/__main__.py +0 -0
  24. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/tests/__init__.py +0 -0
  25. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/tests/test_main.py +0 -0
  26. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/try-repo/run-bump2version.sh +0 -0
  27. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/try-repo/run-dockfmt.sh +0 -0
  28. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/try-repo/run-hatch-version.sh +0 -0
  29. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/try-repo/run-ruff-format.sh +0 -0
  30. {dycw_pre_commit_hooks-0.9.15 → dycw_pre_commit_hooks-0.9.17}/try-repo/run-uv-pip-compile.sh +0 -0
@@ -0,0 +1 @@
1
+ layout pyenv 3.11.9
@@ -1,22 +1,28 @@
1
1
  repos:
2
2
  # fixers
3
3
  - repo: https://github.com/astral-sh/ruff-pre-commit
4
- rev: v0.4.0
4
+ rev: v0.5.7
5
5
  hooks:
6
6
  - id: ruff
7
7
  args: [--fix]
8
+ - id: ruff-format
9
+ types_or: [python, pyi, jupyter]
8
10
  - repo: https://github.com/dycw/pre-commit-hooks
9
- rev: 0.9.14
11
+ rev: 0.9.16
10
12
  hooks:
11
13
  - id: run-hatch-version
12
14
  - id: run-ruff-format
13
15
  - id: run-uv-pip-compile
14
- args: [--python-version=3.10]
16
+ args: [--python-version=3.11]
15
17
  - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
16
- rev: v2.13.0
18
+ rev: v2.14.0
17
19
  hooks:
18
20
  - id: pretty-format-toml
19
21
  args: [--autofix, --trailing-commas]
22
+ - repo: https://github.com/pamoller/xmlformatter
23
+ rev: v0.2.6
24
+ hooks:
25
+ - id: xml-formatter
20
26
  - repo: https://github.com/pre-commit/mirrors-prettier
21
27
  rev: v4.0.0-alpha.8
22
28
  hooks:
@@ -26,7 +32,6 @@ repos:
26
32
  hooks:
27
33
  - id: check-executables-have-shebangs
28
34
  - id: check-merge-conflict
29
- - id: check-shebang-scripts-are-executable
30
35
  - id: check-symlinks
31
36
  - id: destroyed-symlinks
32
37
  - id: detect-private-key
@@ -1,17 +1,18 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dycw-pre-commit-hooks
3
- Version: 0.9.15
3
+ Version: 0.9.17
4
4
  Author-email: Derek Wan <d.wan@icloud.com>
5
- Requires-Python: >=3.10
5
+ Requires-Python: >=3.11
6
6
  Requires-Dist: click<8.2,>=8.1.7
7
- Requires-Dist: dycw-utilities<0.26,>=0.25.1
7
+ Requires-Dist: dycw-utilities<0.41,>=0.40.12
8
8
  Requires-Dist: loguru<0.8,>=0.7.2
9
9
  Requires-Dist: semver<3.1,>=3.0.2
10
- Requires-Dist: tomlkit<0.13,>=0.12.3
10
+ Requires-Dist: tomlkit<0.14,>=0.13.2
11
11
  Requires-Dist: xdg-base-dirs<6.1,>=6.0.1
12
12
  Provides-Extra: dev
13
+ Requires-Dist: basedpyright<1.17,>=1.16.0; extra == 'dev'
13
14
  Requires-Dist: dycw-utilities[test]; extra == 'dev'
14
- Requires-Dist: hatch; extra == 'dev'
15
+ Requires-Dist: hatch<1.13,>=1.12.0; extra == 'dev'
15
16
  Description-Content-Type: text/markdown
16
17
 
17
18
  # pre-commit-hooks
@@ -1,3 +1,3 @@
1
1
  from __future__ import annotations
2
2
 
3
- __version__ = "0.9.15"
3
+ __version__ = "0.9.17"
@@ -2,7 +2,7 @@ from __future__ import annotations
2
2
 
3
3
  from pathlib import Path
4
4
  from subprocess import PIPE, STDOUT, CalledProcessError, check_call
5
- from typing import cast
5
+ from typing import Any, cast
6
6
 
7
7
  from click import command
8
8
  from loguru import logger
@@ -55,4 +55,4 @@ def _get_path_version_file() -> Path:
55
55
  except KeyError:
56
56
  logger.exception('pyproject.toml has no "tool.hatch.version" section')
57
57
  raise
58
- return Path(cast(str, version["path"]))
58
+ return Path(cast(Any, version["path"]))
@@ -1,18 +1,14 @@
1
1
  from __future__ import annotations
2
2
 
3
- from contextlib import contextmanager
4
3
  from subprocess import CalledProcessError, check_call
5
- from typing import TYPE_CHECKING, cast
4
+ from typing import cast
6
5
 
7
6
  from click import command
8
7
  from loguru import logger
9
- from tomlkit import TOMLDocument, dumps, table
8
+ from tomlkit import dumps, table
10
9
  from tomlkit.container import Container
11
10
 
12
- from pre_commit_hooks.common import PYPROJECT_TOML, read_pyproject
13
-
14
- if TYPE_CHECKING:
15
- from collections.abc import Iterator
11
+ from pre_commit_hooks.common import PYPROJECT_TOML, PyProject, read_pyproject
16
12
 
17
13
 
18
14
  @command()
@@ -22,24 +18,15 @@ def main() -> bool:
22
18
 
23
19
 
24
20
  def _process() -> bool:
25
- with _yield_modified_pyproject():
26
- result1 = _run_ruff_format()
27
- result2 = _run_ruff_format()
28
- return result1 and result2
29
-
30
-
31
- @contextmanager
32
- def _yield_modified_pyproject() -> Iterator[None]:
33
21
  curr = read_pyproject()
34
22
  new = _get_modified_pyproject()
35
- with PYPROJECT_TOML.open(mode="w") as fh:
36
- _ = fh.write(dumps(new))
37
- yield
38
- with PYPROJECT_TOML.open(mode="w") as fh:
39
- _ = fh.write(curr.contents)
23
+ result1 = _run_ruff_format(new)
24
+ result2 = _run_ruff_format(curr)
25
+ _write_pyproject(curr)
26
+ return result1 and result2
40
27
 
41
28
 
42
- def _get_modified_pyproject() -> TOMLDocument:
29
+ def _get_modified_pyproject() -> PyProject:
43
30
  pyproject = read_pyproject()
44
31
  doc = pyproject.doc
45
32
  try:
@@ -70,14 +57,20 @@ def _get_modified_pyproject() -> TOMLDocument:
70
57
  ruff["format"] = format_
71
58
  ruff["lint"] = lint
72
59
  lint["isort"] = isort
73
- return doc
60
+ return PyProject(contents=dumps(doc), doc=doc)
74
61
 
75
62
 
76
- def _run_ruff_format() -> bool:
63
+ def _run_ruff_format(pyproject: PyProject, /) -> bool:
64
+ _write_pyproject(pyproject)
77
65
  cmd = ["ruff", "format", "."]
78
66
  try:
79
67
  code = check_call(cmd)
80
68
  except CalledProcessError:
81
69
  logger.exception("Failed to run {cmd!r}", cmd=" ".join(cmd))
82
- raise
70
+ return False
83
71
  return code == 0
72
+
73
+
74
+ def _write_pyproject(pyproject: PyProject, /) -> None:
75
+ with PYPROJECT_TOML.open(mode="w") as fh:
76
+ _ = fh.write(pyproject.contents)
@@ -9,19 +9,23 @@ requires = ["hatchling"]
9
9
  authors = [{name = "Derek Wan", email = "d.wan@icloud.com"}]
10
10
  dependencies = [
11
11
  "click >= 8.1.7, < 8.2",
12
- "dycw-utilities >= 0.25.1, < 0.26",
12
+ "dycw-utilities >= 0.40.12, < 0.41",
13
13
  "loguru >= 0.7.2, < 0.8",
14
14
  "semver >= 3.0.2, < 3.1",
15
- "tomlkit >= 0.12.3, < 0.13",
15
+ "tomlkit >= 0.13.2, < 0.14",
16
16
  "xdg-base-dirs >= 6.0.1, < 6.1",
17
17
  ]
18
18
  dynamic = ["version"]
19
19
  name = "dycw-pre-commit-hooks"
20
20
  readme = "README.md"
21
- requires-python = ">= 3.10"
21
+ requires-python = ">= 3.11"
22
22
 
23
23
  [project.optional-dependencies]
24
- dev = ["dycw-utilities[test]", "hatch"]
24
+ dev = [
25
+ "basedpyright >= 1.16.0, < 1.17",
26
+ "dycw-utilities[test]",
27
+ "hatch >= 1.12.0, < 1.13",
28
+ ]
25
29
 
26
30
  [project.scripts]
27
31
  run-bump2version = "pre_commit_hooks.run_bump2version:main"
@@ -30,6 +34,21 @@ run-hatch-version = "pre_commit_hooks.run_hatch_version:main"
30
34
  run-ruff-format = "pre_commit_hooks.run_ruff_format:main"
31
35
  run-uv-pip-compile = "pre_commit_hooks.run_uv_pip_compile:main"
32
36
 
37
+ # basedpyright
38
+ [tool.basedpyright]
39
+ include = ["src"]
40
+ pythonVersion = "3.11"
41
+ reportAny = false
42
+ reportMissingTypeArgument = false
43
+ reportMissingTypeStubs = false
44
+ reportPrivateUsage = false
45
+ reportUnknownArgumentType = false
46
+ reportUnknownMemberType = false
47
+ reportUnknownParameterType = false
48
+ reportUnknownVariableType = false
49
+ reportUnusedImport = false
50
+ reportUnusedVariable = false
51
+
33
52
  # coverage
34
53
  [tool.coverage]
35
54
 
@@ -62,34 +81,10 @@ path = "src/pre_commit_hooks/__init__.py"
62
81
  # nitpick
63
82
  [tool.nitpick]
64
83
  style = [
65
- "https://raw.githubusercontent.com/dycw/nitpick/master/styles/3.10.toml",
84
+ "https://raw.githubusercontent.com/dycw/nitpick/master/styles/3.11.toml",
66
85
  "https://raw.githubusercontent.com/dycw/nitpick/master/styles/common.toml",
67
86
  ]
68
87
 
69
- # pyright
70
- [tool.pyright]
71
- executionEnvironments = [{root = "src"}]
72
- include = ["src"]
73
- pythonVersion = "3.10"
74
- reportImplicitOverride = "error"
75
- reportImportCycles = "error"
76
- reportMissingSuperCall = "error"
77
- reportMissingTypeArgument = false
78
- reportMissingTypeStubs = false
79
- reportPrivateImportUsage = false
80
- reportPrivateUsage = false
81
- reportPropertyTypeMismatch = "error"
82
- reportShadowedImports = "error"
83
- reportUninitializedInstanceVariable = "error"
84
- reportUnknownArgumentType = false
85
- reportUnknownMemberType = false
86
- reportUnknownParameterType = false
87
- reportUnknownVariableType = false
88
- reportUnnecessaryTypeIgnoreComment = "error"
89
- reportUntypedBaseClass = false
90
- reportUnusedCallResult = "error"
91
- typeCheckingMode = "strict"
92
-
93
88
  # pytest
94
89
  [tool.pytest]
95
90
 
@@ -103,27 +98,43 @@ xfail_strict = true
103
98
  # ruff
104
99
  [tool.ruff]
105
100
  src = ["src"]
106
- target-version = "py310"
101
+ target-version = "py311"
107
102
  unsafe-fixes = true
108
103
 
104
+ [tool.ruff.format]
105
+ preview = true
106
+
109
107
  [tool.ruff.lint]
108
+ fixable = ["ALL"]
110
109
  ignore = [
111
110
  "ANN101", # missing-type-self
112
111
  "ANN102", # missing-type-cls
113
- "ANN401", # dynamically-typed-expression
114
- "D", # pydocstyle
112
+ "ANN401", # any-type
113
+ "C901", # complex-structure
114
+ "D100", # undocumented-public-module
115
+ "D101", # undocumented-public-class
116
+ "D102", # undocumented-public-method
117
+ "D103", # undocumented-public-function
118
+ "D104", # undocumented-public-package
119
+ "D105", # undocumented-magic-method
120
+ "D106", # undocumented-public-nested-class
121
+ "D107", # undocumented-public-init
122
+ "D203", # one-blank-line-before-class
123
+ "D213", # multi-line-summary-second-line
115
124
  "E501", # line-too-long
116
- "F403", # undefined-local-with-import-star
117
- "F405", # undefined-local-with-import-star-usage
118
- "PLE1142", # await-outside-async
125
+ "PD901", # pandas-df-variable-name
126
+ "PERF203", # try-except-in-loop
119
127
  "PLR0911", # too-many-return-statements
128
+ "PLR0912", # too-many-branches
120
129
  "PLR0913", # too-many-arguments
121
130
  "PLR0915", # too-many-statements
122
131
  "PLR2004", # magic-value-comparison
123
132
  "PT013", # pytest-incorrect-pytest-import
124
- "S101", # assert-used
133
+ "S311", # suspicious-non-cryptographic-random-usage
125
134
  "S603", # subprocess-without-shell-equals-true
126
135
  "S607", # start-process-with-partial-path
136
+ # preview
137
+ "S101", # assert
127
138
  # formatter
128
139
  "W191", # tab-indentation
129
140
  "E111", # indentation-with-invalid-multiple
@@ -141,6 +152,19 @@ ignore = [
141
152
  "ISC002", # multi-line-implicit-string-concatenation
142
153
  ]
143
154
  select = ["ALL"]
155
+ unfixable = [
156
+ "B007", # unused-loop-control-variable
157
+ "F541", # f-string-missing-placeholders
158
+ "F601", # multi-value-repeated-key-literal
159
+ "PIE794", # duplicate-class-field-definition
160
+ "PLR5501", # collapsible-else-if
161
+ "PT014", # pytest-duplicate-parametrize-test-cases
162
+ "RET504", # unnecessary-assign
163
+ "SIM102", # collapsible-if
164
+ "SIM105", # suppressible-exception
165
+ "SIM114", # if-with-same-arms
166
+ "T201", # print
167
+ ]
144
168
 
145
169
  [tool.ruff.lint.extend-per-file-ignores]
146
170
  "*.ipynb" = [
@@ -1,38 +1,35 @@
1
1
  # This file was autogenerated by uv via the following command:
2
- # uv pip compile --extra=dev --prerelease=disallow --output-file=requirements.txt --python-version=3.10 pyproject.toml
3
- anyio==4.3.0
2
+ # uv pip compile --extra=dev --prerelease=disallow --output-file=requirements.txt --python-version=3.11 pyproject.toml
3
+ anyio==4.4.0
4
4
  # via httpx
5
- attrs==23.2.0
5
+ attrs==24.2.0
6
6
  # via hypothesis
7
- backports-tarfile==1.1.0
7
+ backports-tarfile==1.2.0
8
8
  # via jaraco-context
9
- certifi==2024.2.2
9
+ basedpyright==1.16.0
10
+ # via dycw-pre-commit-hooks (pyproject.toml)
11
+ certifi==2024.7.4
10
12
  # via
11
13
  # httpcore
12
14
  # httpx
13
15
  click==8.1.7
14
16
  # via
17
+ # dycw-pre-commit-hooks (pyproject.toml)
15
18
  # hatch
16
19
  # userpath
17
20
  distlib==0.3.8
18
21
  # via virtualenv
19
- dycw-utilities==0.25.2
20
- editables==0.5
21
- # via hatchling
22
- exceptiongroup==1.2.1
23
- # via
24
- # anyio
25
- # dycw-utilities
26
- # hypothesis
27
- # pytest
22
+ dycw-utilities==0.40.12
23
+ # via dycw-pre-commit-hooks (pyproject.toml)
28
24
  execnet==2.1.1
29
25
  # via pytest-xdist
30
- filelock==3.13.4
26
+ filelock==3.15.4
31
27
  # via virtualenv
32
28
  h11==0.14.0
33
29
  # via httpcore
34
- hatch==1.9.4
35
- hatchling==1.21.1
30
+ hatch==1.12.0
31
+ # via dycw-pre-commit-hooks (pyproject.toml)
32
+ hatchling==1.25.0
36
33
  # via hatch
37
34
  httpcore==1.0.5
38
35
  # via httpx
@@ -40,14 +37,14 @@ httpx==0.27.0
40
37
  # via hatch
41
38
  hyperlink==21.0.0
42
39
  # via hatch
43
- hypothesis==6.100.1
40
+ hypothesis==6.111.0
44
41
  # via dycw-utilities
45
42
  idna==3.7
46
43
  # via
47
44
  # anyio
48
45
  # httpx
49
46
  # hyperlink
50
- importlib-metadata==7.1.0
47
+ importlib-metadata==8.2.0
51
48
  # via keyring
52
49
  iniconfig==2.0.0
53
50
  # via pytest
@@ -55,52 +52,60 @@ jaraco-classes==3.4.0
55
52
  # via keyring
56
53
  jaraco-context==5.3.0
57
54
  # via keyring
58
- jaraco-functools==4.0.1
55
+ jaraco-functools==4.0.2
59
56
  # via keyring
60
- keyring==25.1.0
57
+ keyring==25.3.0
61
58
  # via hatch
62
59
  loguru==0.7.2
60
+ # via dycw-pre-commit-hooks (pyproject.toml)
63
61
  markdown-it-py==3.0.0
64
62
  # via rich
65
63
  mdurl==0.1.2
66
64
  # via markdown-it-py
67
- more-itertools==10.2.0
65
+ more-itertools==10.4.0
68
66
  # via
69
67
  # jaraco-classes
70
68
  # jaraco-functools
71
- packaging==24.0
69
+ nodejs-wheel-binaries==20.16.0
70
+ # via basedpyright
71
+ packaging==24.1
72
72
  # via
73
73
  # hatch
74
74
  # hatchling
75
75
  # pytest
76
+ # pytest-rerunfailures
76
77
  pathspec==0.12.1
77
78
  # via hatchling
78
79
  pexpect==4.9.0
79
80
  # via hatch
80
- platformdirs==4.2.0
81
+ platformdirs==4.2.2
81
82
  # via
82
83
  # hatch
83
84
  # virtualenv
84
- pluggy==1.4.0
85
+ pluggy==1.5.0
85
86
  # via
86
87
  # hatchling
87
88
  # pytest
88
89
  ptyprocess==0.7.0
89
90
  # via pexpect
90
- pygments==2.17.2
91
+ pygments==2.18.0
91
92
  # via rich
92
- pytest==8.1.1
93
+ pytest==8.3.2
93
94
  # via
94
95
  # dycw-utilities
95
96
  # pytest-randomly
97
+ # pytest-rerunfailures
96
98
  # pytest-xdist
97
99
  pytest-randomly==3.15.0
98
100
  # via dycw-utilities
99
- pytest-xdist==3.5.0
101
+ pytest-rerunfailures==14.0
102
+ # via dycw-utilities
103
+ pytest-xdist==3.6.1
100
104
  # via dycw-utilities
101
105
  rich==13.7.1
102
106
  # via hatch
103
107
  semver==3.0.2
108
+ # via dycw-pre-commit-hooks (pyproject.toml)
104
109
  shellingham==1.5.4
105
110
  # via hatch
106
111
  sniffio==1.3.1
@@ -109,26 +114,25 @@ sniffio==1.3.1
109
114
  # httpx
110
115
  sortedcontainers==2.4.0
111
116
  # via hypothesis
112
- tomli==2.0.1
113
- # via
114
- # hatchling
115
- # pytest
116
117
  tomli-w==1.0.0
117
118
  # via hatch
118
- tomlkit==0.12.4
119
- # via hatch
120
- trove-classifiers==2024.4.10
121
- # via hatchling
122
- typing-extensions==4.11.0
119
+ tomlkit==0.13.2
123
120
  # via
124
- # anyio
125
- # dycw-utilities
121
+ # dycw-pre-commit-hooks (pyproject.toml)
122
+ # hatch
123
+ trove-classifiers==2024.7.2
124
+ # via hatchling
125
+ typing-extensions==4.12.2
126
+ # via dycw-utilities
126
127
  userpath==1.9.2
127
128
  # via hatch
128
- virtualenv==20.25.3
129
+ uv==0.2.36
130
+ # via hatch
131
+ virtualenv==20.26.3
129
132
  # via hatch
130
133
  xdg-base-dirs==6.0.1
131
- zipp==3.18.1
134
+ # via dycw-pre-commit-hooks (pyproject.toml)
135
+ zipp==3.20.0
132
136
  # via importlib-metadata
133
- zstandard==0.22.0
137
+ zstandard==0.23.0
134
138
  # via hatch
@@ -1 +0,0 @@
1
- layout pyenv 3.10.14