nox-uv 0.6.3__py3-none-any.whl → 0.7.1__py3-none-any.whl
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.
- nox_uv/__init__.py +14 -0
- {nox_uv-0.6.3.dist-info → nox_uv-0.7.1.dist-info}/METADATA +6 -3
- nox_uv-0.7.1.dist-info/RECORD +6 -0
- {nox_uv-0.6.3.dist-info → nox_uv-0.7.1.dist-info}/WHEEL +1 -1
- nox_uv-0.6.3.dist-info/RECORD +0 -6
- {nox_uv-0.6.3.dist-info → nox_uv-0.7.1.dist-info}/licenses/LICENSE.txt +0 -0
nox_uv/__init__.py
CHANGED
|
@@ -25,9 +25,12 @@ def session(
|
|
|
25
25
|
uv_extras: Sequence[str] = (),
|
|
26
26
|
uv_only_groups: Sequence[str] = (),
|
|
27
27
|
uv_all_extras: bool = False,
|
|
28
|
+
uv_no_extras: Sequence[str] = (),
|
|
28
29
|
uv_all_groups: bool = False,
|
|
30
|
+
uv_no_groups: Sequence[str] = (),
|
|
29
31
|
uv_no_install_project: bool = False,
|
|
30
32
|
uv_sync_locked: bool = True,
|
|
33
|
+
uv_quiet: bool = False,
|
|
31
34
|
**kwargs: dict[str, Any],
|
|
32
35
|
) -> Callable[..., Callable[..., R]]:
|
|
33
36
|
"""Drop-in replacement for the :func:`nox.session` decorator to add support for `uv`.
|
|
@@ -54,10 +57,13 @@ def session(
|
|
|
54
57
|
uv_groups=uv_groups,
|
|
55
58
|
uv_extras=uv_extras,
|
|
56
59
|
uv_all_extras=uv_all_extras,
|
|
60
|
+
uv_no_extras=uv_no_extras,
|
|
57
61
|
uv_all_groups=uv_all_groups,
|
|
62
|
+
uv_no_groups=uv_no_groups,
|
|
58
63
|
uv_only_groups=uv_only_groups,
|
|
59
64
|
uv_no_install_project=uv_no_install_project,
|
|
60
65
|
uv_sync_locked=uv_sync_locked,
|
|
66
|
+
uv_quiet=uv_quiet,
|
|
61
67
|
**kwargs,
|
|
62
68
|
) # type: ignore
|
|
63
69
|
|
|
@@ -71,6 +77,10 @@ def session(
|
|
|
71
77
|
if uv_sync_locked:
|
|
72
78
|
sync_cmd.append("--locked")
|
|
73
79
|
|
|
80
|
+
# Silence uv command
|
|
81
|
+
if uv_quiet:
|
|
82
|
+
sync_cmd.append("--quiet")
|
|
83
|
+
|
|
74
84
|
# Add the groups
|
|
75
85
|
extended_cmd.extend([f"--group={g}" for g in uv_groups])
|
|
76
86
|
|
|
@@ -82,9 +92,13 @@ def session(
|
|
|
82
92
|
|
|
83
93
|
if uv_all_groups:
|
|
84
94
|
extended_cmd.append("--all-groups")
|
|
95
|
+
# Add the no-group(s)
|
|
96
|
+
extended_cmd.extend([f"--no-group={g}" for g in uv_no_groups])
|
|
85
97
|
|
|
86
98
|
if uv_all_extras:
|
|
87
99
|
extended_cmd.append("--all-extras")
|
|
100
|
+
# Add the no-extra(s)
|
|
101
|
+
extended_cmd.extend([f"--no-extra={e}" for e in uv_no_extras])
|
|
88
102
|
|
|
89
103
|
if uv_no_install_project:
|
|
90
104
|
extended_cmd.append("--no-install-project")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nox-uv
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: Facilitate nox integration with uv for Python projects
|
|
5
5
|
Keywords: nox,uv
|
|
6
6
|
Author: Dan Tebben
|
|
@@ -121,7 +121,7 @@ def lint(s: Session) -> None:
|
|
|
121
121
|
|
|
122
122
|
> [!NOTE]
|
|
123
123
|
> The `default_groups` defined in `pyproject.toml` are _not_ installed by default. The
|
|
124
|
-
> user must explicitly list the desired groups in the `uv_groups` parameter.
|
|
124
|
+
> user must explicitly list the desired groups in the `uv_groups` parameter.
|
|
125
125
|
|
|
126
126
|
### Added parameters
|
|
127
127
|
|
|
@@ -130,12 +130,15 @@ def lint(s: Session) -> None:
|
|
|
130
130
|
- `uv_only_groups`: list of `uv` _only-groups_ to include. Prevents installation of project
|
|
131
131
|
_dependencies_
|
|
132
132
|
- `uv_all_extras`: boolean to install all _optional-dependencies_ from `pyproject.toml`
|
|
133
|
+
- `uv_no_extras`: list of extras to exclude during install of `uv_all_extras`
|
|
133
134
|
- `uv_all_groups`: boolean to install all _dependency-groups_
|
|
135
|
+
- `uv_no_groups`: list of groups to exclude during install of `uv_all_groups`
|
|
134
136
|
- `uv_no_install_project`: boolean to not install the current project
|
|
135
137
|
- `uv_sync_locked`: boolean to validate that `uv.lock` is up to date
|
|
138
|
+
- `uv_quiet`: boolean to silence `uv sync` command
|
|
136
139
|
|
|
137
140
|
|
|
138
141
|
## Inspiration
|
|
139
142
|
|
|
140
|
-
This is heavily influenced by, but much more limited than,
|
|
143
|
+
This is heavily influenced by, but much more limited than,
|
|
141
144
|
[nox-poetry](https://nox-poetry.readthedocs.io).
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
nox_uv/__init__.py,sha256=28Zi0NJnh310h54TiezFj6SmOeZVffz-ecJHUYRjzOA,4472
|
|
2
|
+
nox_uv/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
nox_uv-0.7.1.dist-info/licenses/LICENSE.txt,sha256=iTZ5ALF1isnM6Ey9Tjom0XIGBBysArB0I2NHZ9a-b8I,1067
|
|
4
|
+
nox_uv-0.7.1.dist-info/WHEEL,sha256=RRVLqVugUmFOqBedBFAmA4bsgFcROUBiSUKlERi0Hcg,79
|
|
5
|
+
nox_uv-0.7.1.dist-info/METADATA,sha256=3yoOKjEOGvErZxZwayfRmY-35lYKM6EAeji2Vc-uuZw,5066
|
|
6
|
+
nox_uv-0.7.1.dist-info/RECORD,,
|
nox_uv-0.6.3.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
nox_uv/__init__.py,sha256=mMZxMHQNKNTp4AblBvFa6nBrn28Nx7iME_TpO0XBV2E,3979
|
|
2
|
-
nox_uv/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
nox_uv-0.6.3.dist-info/licenses/LICENSE.txt,sha256=iTZ5ALF1isnM6Ey9Tjom0XIGBBysArB0I2NHZ9a-b8I,1067
|
|
4
|
-
nox_uv-0.6.3.dist-info/WHEEL,sha256=M6du7VZflc4UPsGphmOXHANdgk8zessdJG0DBUuoA-U,78
|
|
5
|
-
nox_uv-0.6.3.dist-info/METADATA,sha256=tXjtG_iOpX9tUllUBE7WEvFhbye3hUFnPsijNeBHNdc,4861
|
|
6
|
-
nox_uv-0.6.3.dist-info/RECORD,,
|
|
File without changes
|