nox-uv 0.2.3__py3-none-any.whl → 0.3.0__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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nox-uv
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Facilitate nox integration with uv for Python projects
|
|
5
5
|
Project-URL: Homepage, https://github.com/dantebben/nox-uv
|
|
6
6
|
Author-email: Dan Tebben <dantebben@gmail.com>
|
|
@@ -20,11 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
20
20
|
Classifier: Topic :: Software Development :: Testing
|
|
21
21
|
Classifier: Typing :: Typed
|
|
22
22
|
Requires-Python: >=3.9
|
|
23
|
-
Requires-Dist: nox>=2025.
|
|
24
|
-
Provides-Extra: pyyaml
|
|
25
|
-
Requires-Dist: pyyaml; extra == 'pyyaml'
|
|
26
|
-
Provides-Extra: scapy
|
|
27
|
-
Requires-Dist: scapy; extra == 'scapy'
|
|
23
|
+
Requires-Dist: nox>=2025.05.01
|
|
28
24
|
Description-Content-Type: text/markdown
|
|
29
25
|
|
|
30
26
|
## Intro
|
|
@@ -32,12 +28,14 @@ Description-Content-Type: text/markdown
|
|
|
32
28
|
This is a basic drop-in replacement for `nox.session` of [nox](https://nox.thea.codes/) to be used
|
|
33
29
|
with the [uv](https://docs.astral.sh/uv/) package manager.
|
|
34
30
|
|
|
35
|
-
To use, import `session` from `
|
|
31
|
+
To use, import `session` from `nox_uv` in your `noxfile.py`.
|
|
36
32
|
|
|
37
|
-
|
|
33
|
+
> [!NOTE]
|
|
34
|
+
> All `@session(...)` parameters are keywords only, no positional parameters are allowed.
|
|
38
35
|
|
|
39
|
-
|
|
40
|
-
|
|
36
|
+
> [!NOTE]
|
|
37
|
+
> The `default_groups` defined in `pyproject.toml` are _not_ installed by default. The
|
|
38
|
+
> user must explicitly list the desired groups in the `uv_groups` parameter.
|
|
41
39
|
|
|
42
40
|
## Added parameters
|
|
43
41
|
|
|
@@ -48,5 +46,5 @@ user must explicitly list the desired groups in the `uv_groups` parameter.
|
|
|
48
46
|
|
|
49
47
|
## Inspiration
|
|
50
48
|
|
|
51
|
-
This is
|
|
49
|
+
This is heavily influenced by, but much more limited than,
|
|
52
50
|
[nox-poetry](https://nox-poetry.readthedocs.io).
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
nox_uv/__init__.py,sha256=r5KNgONE17jPy66T_MK6caqw5pkNYCHTgxWdcM3NuPQ,3054
|
|
2
|
+
nox_uv/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
nox_uv-0.3.0.dist-info/METADATA,sha256=qPBt6LmmykDW1NSS6ig1hcDL5FMIW3E4xZV_LcnZb8o,1844
|
|
4
|
+
nox_uv-0.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
5
|
+
nox_uv-0.3.0.dist-info/licenses/LICENSE.txt,sha256=iTZ5ALF1isnM6Ey9Tjom0XIGBBysArB0I2NHZ9a-b8I,1067
|
|
6
|
+
nox_uv-0.3.0.dist-info/RECORD,,
|
nox_uv-0.2.3.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
nox_uv/__init__.py,sha256=r5KNgONE17jPy66T_MK6caqw5pkNYCHTgxWdcM3NuPQ,3054
|
|
2
|
-
nox_uv/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
nox_uv-0.2.3.dist-info/METADATA,sha256=2YjF8ZHvRj3MXQowiZbuBecvxcGuRufU56LAlbdtlC8,1962
|
|
4
|
-
nox_uv-0.2.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
5
|
-
nox_uv-0.2.3.dist-info/licenses/LICENSE.txt,sha256=iTZ5ALF1isnM6Ey9Tjom0XIGBBysArB0I2NHZ9a-b8I,1067
|
|
6
|
-
nox_uv-0.2.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|