tinydantic 0.1.7__tar.gz → 0.1.8__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.
- {tinydantic-0.1.7 → tinydantic-0.1.8}/.github/workflows/publish.yml +3 -3
- {tinydantic-0.1.7 → tinydantic-0.1.8}/LICENSE.md +1 -1
- {tinydantic-0.1.7 → tinydantic-0.1.8}/PKG-INFO +7 -5
- {tinydantic-0.1.7 → tinydantic-0.1.8}/README.md +1 -1
- {tinydantic-0.1.7 → tinydantic-0.1.8}/REUSE.toml +1 -1
- {tinydantic-0.1.7 → tinydantic-0.1.8}/mkdocs.yml +14 -2
- {tinydantic-0.1.7 → tinydantic-0.1.8}/pyproject.toml +4 -3
- tinydantic-0.1.7/.readthedocs.yaml +0 -21
- {tinydantic-0.1.7 → tinydantic-0.1.8}/.github/workflows/test.yml +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/.gitignore +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/.pre-commit-config.yaml +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/.vscode/extensions.json +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/LICENSES/Apache-2.0.txt +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/LICENSES/CC-BY-4.0.txt +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/LICENSES/MIT.txt +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/docs/index.md +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/docs/installation.md +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/src/tinydantic/__about__.py +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/src/tinydantic/__init__.py +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/src/tinydantic/py.typed +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/taplo.toml +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/tests/__init__.py +0 -0
- {tinydantic-0.1.7 → tinydantic-0.1.8}/tests/test_version.py +0 -0
|
@@ -33,7 +33,7 @@ jobs:
|
|
|
33
33
|
|
|
34
34
|
publish-to-pypi:
|
|
35
35
|
name: Publish to PyPI
|
|
36
|
-
if: github.repository_owner == '
|
|
36
|
+
if: github.repository_owner == 'tinydantic' && startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
|
|
37
37
|
needs:
|
|
38
38
|
- build
|
|
39
39
|
runs-on: ubuntu-latest
|
|
@@ -53,7 +53,7 @@ jobs:
|
|
|
53
53
|
# GitHub Release
|
|
54
54
|
github-release:
|
|
55
55
|
name: Create GitHub Release
|
|
56
|
-
if: github.repository_owner == '
|
|
56
|
+
if: github.repository_owner == 'tinydantic'
|
|
57
57
|
needs:
|
|
58
58
|
- publish-to-pypi
|
|
59
59
|
permissions:
|
|
@@ -86,7 +86,7 @@ jobs:
|
|
|
86
86
|
|
|
87
87
|
publish-to-testpypi:
|
|
88
88
|
name: Publish to TestPyPI
|
|
89
|
-
if: github.repository_owner == '
|
|
89
|
+
if: github.repository_owner == 'tinydantic' && github.ref == 'refs/heads/main'
|
|
90
90
|
needs:
|
|
91
91
|
- build
|
|
92
92
|
runs-on: ubuntu-latest
|
|
@@ -19,7 +19,7 @@ under the [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) license.*
|
|
|
19
19
|
## SPDX & REUSE Compliance
|
|
20
20
|
|
|
21
21
|
[](https://api.reuse.software/info/github.com/tinydantic/tinydantic)
|
|
23
23
|
|
|
24
24
|
This repository is compliant with version 3.2 of the [REUSE
|
|
25
25
|
Specification](https://reuse.software/spec/).
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: tinydantic
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Project-URL: Documentation, https://github.com/
|
|
5
|
-
Project-URL: Issues, https://github.com/
|
|
6
|
-
Project-URL: Source, https://github.com/
|
|
3
|
+
Version: 0.1.8
|
|
4
|
+
Project-URL: Documentation, https://github.com/tinydantic/tinydantic#readme
|
|
5
|
+
Project-URL: Issues, https://github.com/tinydantic/tinydantic/issues
|
|
6
|
+
Project-URL: Source, https://github.com/tinydantic/tinydantic
|
|
7
7
|
Author-email: Chris Wilson <christopher.david.wilson@gmail.com>
|
|
8
8
|
License-Expression: Apache-2.0 OR MIT
|
|
9
9
|
License-File: LICENSES/Apache-2.0.txt
|
|
@@ -24,6 +24,7 @@ Requires-Dist: reuse>=4.0.0; extra == 'compliance'
|
|
|
24
24
|
Provides-Extra: dev
|
|
25
25
|
Requires-Dist: commitizen; extra == 'dev'
|
|
26
26
|
Requires-Dist: interrogate; extra == 'dev'
|
|
27
|
+
Requires-Dist: mike; extra == 'dev'
|
|
27
28
|
Requires-Dist: mkdocs-material; extra == 'dev'
|
|
28
29
|
Requires-Dist: mkdocstrings; extra == 'dev'
|
|
29
30
|
Requires-Dist: mypy>=1.0.0; extra == 'dev'
|
|
@@ -33,6 +34,7 @@ Requires-Dist: reuse>=4.0.0; extra == 'dev'
|
|
|
33
34
|
Requires-Dist: ruff; extra == 'dev'
|
|
34
35
|
Requires-Dist: uv; extra == 'dev'
|
|
35
36
|
Provides-Extra: doc
|
|
37
|
+
Requires-Dist: mike; extra == 'doc'
|
|
36
38
|
Requires-Dist: mkdocs-material; extra == 'doc'
|
|
37
39
|
Requires-Dist: mkdocstrings; extra == 'doc'
|
|
38
40
|
Provides-Extra: pre-commit
|
|
@@ -67,4 +69,4 @@ pip install tinydantic
|
|
|
67
69
|
|
|
68
70
|
## License
|
|
69
71
|
|
|
70
|
-
See the [LICENSE](https://github.com/
|
|
72
|
+
See the [LICENSE](https://github.com/tinydantic/tinydantic/blob/main/LICENSE.md) file for copyright & license information.
|
|
@@ -21,4 +21,4 @@ pip install tinydantic
|
|
|
21
21
|
|
|
22
22
|
## License
|
|
23
23
|
|
|
24
|
-
See the [LICENSE](https://github.com/
|
|
24
|
+
See the [LICENSE](https://github.com/tinydantic/tinydantic/blob/main/LICENSE.md) file for copyright & license information.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#
|
|
3
3
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
4
4
|
|
|
5
|
-
SPDX-PackageDownloadLocation = "https://github.com/
|
|
5
|
+
SPDX-PackageDownloadLocation = "https://github.com/tinydantic/tinydantic/"
|
|
6
6
|
SPDX-PackageName = "tinydantic"
|
|
7
7
|
SPDX-PackageSupplier = "Chris Wilson <christopher.david.wilson@gmail.com>"
|
|
8
8
|
version = 1
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
site_name: tinydantic
|
|
6
6
|
site_url: https://tinydantic.dev
|
|
7
|
-
repo_url: https://github.com/
|
|
8
|
-
repo_name:
|
|
7
|
+
repo_url: https://github.com/tinydantic/tinydantic
|
|
8
|
+
repo_name: tinydantic/tinydantic
|
|
9
9
|
edit_uri: edit/main/docs/
|
|
10
10
|
copyright: Copyright © Chris Wilson
|
|
11
11
|
theme:
|
|
@@ -22,6 +22,14 @@ theme:
|
|
|
22
22
|
plugins:
|
|
23
23
|
- search
|
|
24
24
|
- mkdocstrings
|
|
25
|
+
- mike:
|
|
26
|
+
alias_type: symlink
|
|
27
|
+
redirect_template: null
|
|
28
|
+
deploy_prefix: ''
|
|
29
|
+
canonical_version: latest
|
|
30
|
+
version_selector: true
|
|
31
|
+
css_dir: css
|
|
32
|
+
javascript_dir: js
|
|
25
33
|
markdown_extensions:
|
|
26
34
|
- admonition
|
|
27
35
|
- pymdownx.details
|
|
@@ -34,3 +42,7 @@ nav:
|
|
|
34
42
|
- Get Started:
|
|
35
43
|
- index.md
|
|
36
44
|
- installation.md
|
|
45
|
+
extra:
|
|
46
|
+
version:
|
|
47
|
+
provider: mike
|
|
48
|
+
default: latest
|
|
@@ -61,6 +61,7 @@ dev = [
|
|
|
61
61
|
# popular than "doc":
|
|
62
62
|
# https://github.com/scientific-python/specs/pull/324#issuecomment-2150738534
|
|
63
63
|
doc = [
|
|
64
|
+
"mike",
|
|
64
65
|
"mkdocs-material",
|
|
65
66
|
"mkdocstrings",
|
|
66
67
|
]
|
|
@@ -79,9 +80,9 @@ types = [
|
|
|
79
80
|
]
|
|
80
81
|
|
|
81
82
|
[project.urls]
|
|
82
|
-
Documentation = "https://github.com/
|
|
83
|
-
Issues = "https://github.com/
|
|
84
|
-
Source = "https://github.com/
|
|
83
|
+
Documentation = "https://github.com/tinydantic/tinydantic#readme"
|
|
84
|
+
Issues = "https://github.com/tinydantic/tinydantic/issues"
|
|
85
|
+
Source = "https://github.com/tinydantic/tinydantic"
|
|
85
86
|
|
|
86
87
|
[tool.hatch.version]
|
|
87
88
|
raw-options = { local_scheme = "no-local-version" }
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Chris Wilson <christopher.david.wilson@gmail.com>
|
|
2
|
-
#
|
|
3
|
-
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
4
|
-
|
|
5
|
-
version: 2
|
|
6
|
-
|
|
7
|
-
build:
|
|
8
|
-
os: ubuntu-24.04
|
|
9
|
-
tools:
|
|
10
|
-
python: "3.12"
|
|
11
|
-
|
|
12
|
-
python:
|
|
13
|
-
install:
|
|
14
|
-
- method: pip
|
|
15
|
-
path: .
|
|
16
|
-
extra_requirements:
|
|
17
|
-
- doc
|
|
18
|
-
|
|
19
|
-
mkdocs:
|
|
20
|
-
configuration: mkdocs.yml
|
|
21
|
-
fail_on_warning: 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
|
|
File without changes
|