tinydantic 0.1.16__tar.gz → 0.1.18__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.16 → tinydantic-0.1.18}/.github/workflows/ci.yaml +0 -3
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.github/workflows/docs-release.yaml +1 -3
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.github/workflows/publish-python-package.yaml +7 -1
- {tinydantic-0.1.16 → tinydantic-0.1.18}/PKG-INFO +1 -1
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.editorconfig +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.github/workflows/docs-dev.yaml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.gitignore +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.linkcheckerrc +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.markdownlint.yaml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.pre-commit-config.yaml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.prettierrc.yaml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.vscode/extensions.json +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/.yamllint.yaml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSE.md +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSES/Apache-2.0.txt +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSES/CC-BY-4.0.txt +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/LICENSES/MIT.txt +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/README.md +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/REUSE.toml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/.pages +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/css/code_select.css +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/index.md +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/installation.md +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/reference/.pages +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/docs/reference/index.md +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/mkdocs.yaml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/pyproject.toml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/scripts/gen_api_docs.py +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/src/tinydantic/__init__.py +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/src/tinydantic/py.typed +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/taplo.toml +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/tests/__init__.py +0 -0
- {tinydantic-0.1.16 → tinydantic-0.1.18}/tests/test_version.py +0 -0
|
@@ -70,12 +70,9 @@ jobs:
|
|
|
70
70
|
required-checks-pass:
|
|
71
71
|
name: Ensure everything required is passing for branch protection
|
|
72
72
|
if: always()
|
|
73
|
-
|
|
74
73
|
needs:
|
|
75
74
|
- test
|
|
76
|
-
|
|
77
75
|
runs-on: ubuntu-latest
|
|
78
|
-
|
|
79
76
|
steps:
|
|
80
77
|
- name: Decide whether the needed jobs succeeded or failed
|
|
81
78
|
uses: re-actors/alls-green@release/v1
|
|
@@ -51,9 +51,7 @@ jobs:
|
|
|
51
51
|
run: hatch -v run doc:build-check
|
|
52
52
|
- name: Get doc version
|
|
53
53
|
run: |
|
|
54
|
-
|
|
55
|
-
DOC_VERSION=${TAG_NAME#v}
|
|
56
|
-
echo "DOC_VERSION=$DOC_VERSION" >> $GITHUB_ENV
|
|
54
|
+
echo "DOC_VERSION=${GITHUB_REF#v}" >> $GITHUB_ENV
|
|
57
55
|
- name: Commit documentation
|
|
58
56
|
run: >-
|
|
59
57
|
hatch -v run doc:ci-publish "$DOC_VERSION" latest
|
|
@@ -71,6 +71,11 @@ jobs:
|
|
|
71
71
|
with:
|
|
72
72
|
name: Packages
|
|
73
73
|
path: dist
|
|
74
|
+
- name: Get release version
|
|
75
|
+
run: |
|
|
76
|
+
echo "VERSION=${GITHUB_REF#v}" >> $GITHUB_ENV
|
|
77
|
+
- name: Get repository name
|
|
78
|
+
run: echo "REPOSITORY_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV
|
|
74
79
|
- name: Create GitHub Release
|
|
75
80
|
env:
|
|
76
81
|
GITHUB_TOKEN: ${{ github.token }}
|
|
@@ -78,6 +83,7 @@ jobs:
|
|
|
78
83
|
gh release create
|
|
79
84
|
'${{ github.ref_name }}'
|
|
80
85
|
--repo '${{ github.repository }}'
|
|
86
|
+
--title "$REPOSITORY_NAME $VERSION"
|
|
81
87
|
--notes ""
|
|
82
88
|
- name: Upload artifact signatures
|
|
83
89
|
env:
|
|
@@ -87,7 +93,7 @@ jobs:
|
|
|
87
93
|
# sigstore-produced signatures and certificates.
|
|
88
94
|
run: >-
|
|
89
95
|
gh release upload
|
|
90
|
-
|
|
96
|
+
"$VERSION" dist/**
|
|
91
97
|
--repo '${{ github.repository }}'
|
|
92
98
|
|
|
93
99
|
publish-to-testpypi:
|
|
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
|
|
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
|