valid8r 0.7.1__py3-none-any.whl → 0.7.2__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.
Potentially problematic release.
This version of valid8r might be problematic. Click here for more details.
- {valid8r-0.7.1.dist-info → valid8r-0.7.2.dist-info}/METADATA +15 -7
- {valid8r-0.7.1.dist-info → valid8r-0.7.2.dist-info}/RECORD +5 -5
- {valid8r-0.7.1.dist-info → valid8r-0.7.2.dist-info}/WHEEL +0 -0
- {valid8r-0.7.1.dist-info → valid8r-0.7.2.dist-info}/entry_points.txt +0 -0
- {valid8r-0.7.1.dist-info → valid8r-0.7.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: valid8r
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: Clean, flexible input validation for Python applications
|
|
5
5
|
Project-URL: Homepage, https://valid8r.readthedocs.io/
|
|
6
6
|
Project-URL: Repository, https://github.com/mikelane/valid8r
|
|
@@ -269,28 +269,36 @@ For more examples, see the [documentation](https://valid8r.readthedocs.io/).
|
|
|
269
269
|
|
|
270
270
|
## Development
|
|
271
271
|
|
|
272
|
-
This project uses
|
|
272
|
+
This project uses `uv` for fast dependency management and `tox` for testing across Python versions.
|
|
273
273
|
|
|
274
274
|
### Setup
|
|
275
275
|
|
|
276
276
|
```bash
|
|
277
|
-
# Install
|
|
278
|
-
curl -
|
|
277
|
+
# Install uv
|
|
278
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
279
279
|
|
|
280
280
|
# Install dependencies
|
|
281
|
-
|
|
281
|
+
uv sync
|
|
282
282
|
```
|
|
283
283
|
|
|
284
284
|
### Running Tests
|
|
285
285
|
|
|
286
286
|
```bash
|
|
287
287
|
# Run all tests
|
|
288
|
-
|
|
288
|
+
uv run tox
|
|
289
|
+
|
|
290
|
+
# Run unit tests only
|
|
291
|
+
uv run pytest tests/unit
|
|
289
292
|
|
|
290
293
|
# Run BDD tests
|
|
291
|
-
|
|
294
|
+
uv run tox -e bdd
|
|
295
|
+
|
|
296
|
+
# Run with coverage
|
|
297
|
+
uv run pytest --cov=valid8r tests/unit
|
|
292
298
|
```
|
|
293
299
|
|
|
300
|
+
See [docs/migration-poetry-to-uv.md](docs/migration-poetry-to-uv.md) for the complete migration guide and command reference.
|
|
301
|
+
|
|
294
302
|
## License
|
|
295
303
|
|
|
296
304
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
@@ -11,8 +11,8 @@ valid8r/testing/assertions.py,sha256=9KGz1JooCoyikyxMX7VuXB9VYAtj-4H_LPYFGdvS-ps
|
|
|
11
11
|
valid8r/testing/generators.py,sha256=kAV6NRO9x1gPy0BfGs07ETVxjpTIxOZyV9wH2BA1nHA,8791
|
|
12
12
|
valid8r/testing/mock_input.py,sha256=9GRT7h0PCh9Dea-OcQ5Uls7YqhsTdqMWuX6I6ZlW1aw,2334
|
|
13
13
|
valid8r/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
valid8r-0.7.
|
|
15
|
-
valid8r-0.7.
|
|
16
|
-
valid8r-0.7.
|
|
17
|
-
valid8r-0.7.
|
|
18
|
-
valid8r-0.7.
|
|
14
|
+
valid8r-0.7.2.dist-info/METADATA,sha256=TKweTlPgU5pAjM8lQGCyESnabf-42B6-n-ataTX13Es,10711
|
|
15
|
+
valid8r-0.7.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
valid8r-0.7.2.dist-info/entry_points.txt,sha256=x2MRzcIGcUR5e4GmhLadGdT7YbbohJRMUVubgaR8v_s,82
|
|
17
|
+
valid8r-0.7.2.dist-info/licenses/LICENSE,sha256=JpEmJvRYOTIUt0UjgvpDrd3U94Wnbt_Grr5z-xU2jtk,1066
|
|
18
|
+
valid8r-0.7.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|