pre-commit-uv 4.1.5__tar.gz → 4.2.0__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.
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/PKG-INFO +8 -8
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/pyproject.toml +10 -11
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/tox.ini +7 -6
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/.gitignore +0 -0
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/LICENSE.txt +0 -0
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/README.md +0 -0
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/src/pre_commit_uv/__init__.py +0 -0
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/src/pre_commit_uv/py.typed +0 -0
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/src/pre_commit_uv_patch.pth +0 -0
- {pre_commit_uv-4.1.5 → pre_commit_uv-4.2.0}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pre-commit-uv
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.2.0
|
|
4
4
|
Summary: Run pre-commit with uv
|
|
5
5
|
Project-URL: Bug Tracker, https://github.com/tox-dev/pre-commit-uv/issues
|
|
6
6
|
Project-URL: Changelog, https://github.com/tox-dev/pre-commit-uv/releases
|
|
@@ -31,19 +31,19 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
31
31
|
Classifier: Operating System :: OS Independent
|
|
32
32
|
Classifier: Programming Language :: Python
|
|
33
33
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
34
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
35
34
|
Classifier: Programming Language :: Python :: 3.10
|
|
36
35
|
Classifier: Programming Language :: Python :: 3.11
|
|
37
36
|
Classifier: Programming Language :: Python :: 3.12
|
|
38
37
|
Classifier: Programming Language :: Python :: 3.13
|
|
39
|
-
|
|
40
|
-
Requires-
|
|
41
|
-
Requires-Dist:
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
39
|
+
Requires-Python: >=3.10
|
|
40
|
+
Requires-Dist: pre-commit>=4.3
|
|
41
|
+
Requires-Dist: uv>=0.9.1
|
|
42
42
|
Provides-Extra: testing
|
|
43
43
|
Requires-Dist: covdefaults>=2.3; extra == 'testing'
|
|
44
|
-
Requires-Dist: pytest-cov>=
|
|
45
|
-
Requires-Dist: pytest-mock>=3.
|
|
46
|
-
Requires-Dist: pytest>=8.
|
|
44
|
+
Requires-Dist: pytest-cov>=7; extra == 'testing'
|
|
45
|
+
Requires-Dist: pytest-mock>=3.15.1; extra == 'testing'
|
|
46
|
+
Requires-Dist: pytest>=8.4.2; extra == 'testing'
|
|
47
47
|
Description-Content-Type: text/markdown
|
|
48
48
|
|
|
49
49
|
# pre-commit-uv
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
build-backend = "hatchling.build"
|
|
3
3
|
requires = [
|
|
4
|
-
"hatch-vcs>=0.
|
|
5
|
-
"hatchling>=1.
|
|
4
|
+
"hatch-vcs>=0.5",
|
|
5
|
+
"hatchling>=1.27",
|
|
6
6
|
]
|
|
7
7
|
|
|
8
8
|
[project]
|
|
@@ -17,30 +17,30 @@ license.file = "LICENSE.txt"
|
|
|
17
17
|
authors = [
|
|
18
18
|
{ name = "Bernat Gabor", email = "gaborjbernat@gmail.com" },
|
|
19
19
|
]
|
|
20
|
-
requires-python = ">=3.
|
|
20
|
+
requires-python = ">=3.10"
|
|
21
21
|
classifiers = [
|
|
22
22
|
"License :: OSI Approved :: MIT License",
|
|
23
23
|
"Operating System :: OS Independent",
|
|
24
24
|
"Programming Language :: Python",
|
|
25
25
|
"Programming Language :: Python :: 3 :: Only",
|
|
26
|
-
"Programming Language :: Python :: 3.9",
|
|
27
26
|
"Programming Language :: Python :: 3.10",
|
|
28
27
|
"Programming Language :: Python :: 3.11",
|
|
29
28
|
"Programming Language :: Python :: 3.12",
|
|
30
29
|
"Programming Language :: Python :: 3.13",
|
|
30
|
+
"Programming Language :: Python :: 3.14",
|
|
31
31
|
]
|
|
32
32
|
dynamic = [
|
|
33
33
|
"version",
|
|
34
34
|
]
|
|
35
35
|
dependencies = [
|
|
36
|
-
"pre-commit>=3
|
|
37
|
-
"uv>=0.
|
|
36
|
+
"pre-commit>=4.3",
|
|
37
|
+
"uv>=0.9.1",
|
|
38
38
|
]
|
|
39
39
|
optional-dependencies.testing = [
|
|
40
40
|
"covdefaults>=2.3",
|
|
41
|
-
"pytest>=8.
|
|
42
|
-
"pytest-cov>=
|
|
43
|
-
"pytest-mock>=3.
|
|
41
|
+
"pytest>=8.4.2",
|
|
42
|
+
"pytest-cov>=7",
|
|
43
|
+
"pytest-mock>=3.15.1",
|
|
44
44
|
]
|
|
45
45
|
urls."Bug Tracker" = "https://github.com/tox-dev/pre-commit-uv/issues"
|
|
46
46
|
urls."Changelog" = "https://github.com/tox-dev/pre-commit-uv/releases"
|
|
@@ -61,7 +61,6 @@ build.targets.wheel.sources = [ "src" ]
|
|
|
61
61
|
version.source = "vcs"
|
|
62
62
|
|
|
63
63
|
[tool.ruff]
|
|
64
|
-
target-version = "py39"
|
|
65
64
|
line-length = 120
|
|
66
65
|
format.preview = true
|
|
67
66
|
format.docstring-code-line-length = 100
|
|
@@ -103,7 +102,7 @@ builtin = "clear,usage,en-GB_to_en-US"
|
|
|
103
102
|
count = true
|
|
104
103
|
|
|
105
104
|
[tool.pyproject-fmt]
|
|
106
|
-
max_supported_python = "3.
|
|
105
|
+
max_supported_python = "3.14"
|
|
107
106
|
|
|
108
107
|
[tool.pytest]
|
|
109
108
|
ini_options.testpaths = [
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
[tox]
|
|
2
2
|
requires =
|
|
3
|
-
tox>=4.
|
|
4
|
-
tox-uv>=1.
|
|
3
|
+
tox>=4.31
|
|
4
|
+
tox-uv>=1.28.1
|
|
5
5
|
env_list =
|
|
6
6
|
fix
|
|
7
|
+
3.14
|
|
7
8
|
3.13
|
|
8
9
|
3.12
|
|
9
10
|
3.11
|
|
@@ -43,7 +44,7 @@ commands =
|
|
|
43
44
|
[testenv:type]
|
|
44
45
|
description = run type check on code base
|
|
45
46
|
deps =
|
|
46
|
-
mypy==1.
|
|
47
|
+
mypy==1.18.2
|
|
47
48
|
commands =
|
|
48
49
|
mypy src
|
|
49
50
|
mypy tests
|
|
@@ -52,9 +53,9 @@ commands =
|
|
|
52
53
|
description = check that the long description is valid
|
|
53
54
|
skip_install = true
|
|
54
55
|
deps =
|
|
55
|
-
check-wheel-contents>=0.6
|
|
56
|
-
twine>=
|
|
57
|
-
uv>=0.
|
|
56
|
+
check-wheel-contents>=0.6.3
|
|
57
|
+
twine>=6.2
|
|
58
|
+
uv>=0.9.1
|
|
58
59
|
commands =
|
|
59
60
|
uv build --sdist --wheel --out-dir {env_tmp_dir} .
|
|
60
61
|
twine check {env_tmp_dir}{/}*
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|