valid8r 0.3.1__tar.gz → 0.4.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.
Potentially problematic release.
This version of valid8r might be problematic. Click here for more details.
- {valid8r-0.3.1 → valid8r-0.4.0}/PKG-INFO +8 -1
- {valid8r-0.3.1 → valid8r-0.4.0}/README.md +7 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/pyproject.toml +50 -1
- {valid8r-0.3.1 → valid8r-0.4.0}/LICENSE +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/__init__.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/core/__init__.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/core/combinators.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/core/maybe.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/core/parsers.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/core/validators.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/prompt/__init__.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/prompt/basic.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/py.typed +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/testing/__init__.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/testing/assertions.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/testing/generators.py +0 -0
- {valid8r-0.3.1 → valid8r-0.4.0}/valid8r/testing/mock_input.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: valid8r
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Clean, flexible input validation for Python applications
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -35,8 +35,15 @@ Description-Content-Type: text/markdown
|
|
|
35
35
|
[](https://pypi.org/project/valid8r/)
|
|
36
36
|
[](https://github.com/mikelane/valid8r/blob/main/LICENSE)
|
|
37
37
|
[](https://github.com/mikelane/valid8r/actions)
|
|
38
|
+
[](https://codecov.io/gh/mikelane/valid8r)
|
|
38
39
|
[](https://valid8r.readthedocs.io/)
|
|
39
40
|
|
|
41
|
+
[](https://pypi.org/project/valid8r/)
|
|
42
|
+
[](https://github.com/mikelane/valid8r/stargazers)
|
|
43
|
+
[](https://github.com/mikelane/valid8r/graphs/contributors)
|
|
44
|
+
[](https://github.com/astral-sh/ruff)
|
|
45
|
+
[](https://github.com/python-semantic-release/python-semantic-release)
|
|
46
|
+
|
|
40
47
|
A clean, flexible input validation library for Python applications.
|
|
41
48
|
|
|
42
49
|
## Features
|
|
@@ -4,8 +4,15 @@
|
|
|
4
4
|
[](https://pypi.org/project/valid8r/)
|
|
5
5
|
[](https://github.com/mikelane/valid8r/blob/main/LICENSE)
|
|
6
6
|
[](https://github.com/mikelane/valid8r/actions)
|
|
7
|
+
[](https://codecov.io/gh/mikelane/valid8r)
|
|
7
8
|
[](https://valid8r.readthedocs.io/)
|
|
8
9
|
|
|
10
|
+
[](https://pypi.org/project/valid8r/)
|
|
11
|
+
[](https://github.com/mikelane/valid8r/stargazers)
|
|
12
|
+
[](https://github.com/mikelane/valid8r/graphs/contributors)
|
|
13
|
+
[](https://github.com/astral-sh/ruff)
|
|
14
|
+
[](https://github.com/python-semantic-release/python-semantic-release)
|
|
15
|
+
|
|
9
16
|
A clean, flexible input validation library for Python applications.
|
|
10
17
|
|
|
11
18
|
## Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "valid8r"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.0"
|
|
4
4
|
description = "Clean, flexible input validation for Python applications"
|
|
5
5
|
authors = ["Mike Lane <mikelane@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -40,6 +40,7 @@ httpx = "^0.28.1"
|
|
|
40
40
|
livereload = "^2.7.1"
|
|
41
41
|
mypy = "^1.17.1"
|
|
42
42
|
pre-commit = "^4.3.0"
|
|
43
|
+
python-semantic-release = "^9.21.1"
|
|
43
44
|
uvicorn = "^0.37.0"
|
|
44
45
|
|
|
45
46
|
[tool.poetry.group.lint.dependencies]
|
|
@@ -196,3 +197,51 @@ module = [
|
|
|
196
197
|
"docs.*",
|
|
197
198
|
]
|
|
198
199
|
ignore_errors = true
|
|
200
|
+
|
|
201
|
+
[tool.semantic_release]
|
|
202
|
+
version_toml = ["pyproject.toml:tool.poetry.version"]
|
|
203
|
+
branch = "main"
|
|
204
|
+
build_command = "pip install poetry && poetry build"
|
|
205
|
+
dist_path = "dist/"
|
|
206
|
+
upload_to_release = true
|
|
207
|
+
upload_to_pypi = true
|
|
208
|
+
remove_dist = false
|
|
209
|
+
major_on_zero = false
|
|
210
|
+
tag_format = "v{version}"
|
|
211
|
+
|
|
212
|
+
[tool.semantic_release.branches.main]
|
|
213
|
+
match = "main"
|
|
214
|
+
prerelease = false
|
|
215
|
+
|
|
216
|
+
[tool.semantic_release.changelog]
|
|
217
|
+
template_dir = "templates"
|
|
218
|
+
changelog_file = "CHANGELOG.md"
|
|
219
|
+
exclude_commit_patterns = []
|
|
220
|
+
|
|
221
|
+
[tool.semantic_release.changelog.environment]
|
|
222
|
+
block_start_string = "{%"
|
|
223
|
+
block_end_string = "%}"
|
|
224
|
+
variable_start_string = "{{"
|
|
225
|
+
variable_end_string = "}}"
|
|
226
|
+
comment_start_string = "{#"
|
|
227
|
+
comment_end_string = "#}"
|
|
228
|
+
trim_blocks = false
|
|
229
|
+
lstrip_blocks = false
|
|
230
|
+
newline_sequence = "\n"
|
|
231
|
+
keep_trailing_newline = false
|
|
232
|
+
extensions = []
|
|
233
|
+
autoescape = true
|
|
234
|
+
|
|
235
|
+
[tool.semantic_release.commit_parser_options]
|
|
236
|
+
allowed_tags = ["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert"]
|
|
237
|
+
minor_tags = ["feat"]
|
|
238
|
+
patch_tags = ["fix", "perf"]
|
|
239
|
+
|
|
240
|
+
[tool.semantic_release.remote]
|
|
241
|
+
name = "origin"
|
|
242
|
+
type = "github"
|
|
243
|
+
ignore_token_for_push = false
|
|
244
|
+
|
|
245
|
+
[tool.semantic_release.publish]
|
|
246
|
+
dist_glob_patterns = ["dist/*"]
|
|
247
|
+
upload_to_vcs_release = true
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|