templatepy 0.8.0__tar.gz → 0.8.2__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.
- templatepy-0.8.2/.gitignore +3 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/PKG-INFO +1 -1
- templatepy-0.8.2/VERSION +1 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/copier.yaml +6 -4
- {templatepy-0.8.0 → templatepy-0.8.2}/pyproject.toml +1 -1
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/ci.yml +2 -0
- templatepy-0.8.0/VERSION +0 -1
- {templatepy-0.8.0 → templatepy-0.8.2}/CITATION.cff +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/LICENSE +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/README.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/src/templatepy/__init__.py +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.githooks/fix_commit_msg.py +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/docs.yml +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/pr-review.yml +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/release.yml +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.gitignore +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.gitleaks.toml +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.gitlint +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/.pre-commit-config.yaml +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/CITATION.cff +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/CODE_OF_CONDUCT.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/CONTRIBUTING.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/LICENSE +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/README.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/VERSION +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/docs/index.md +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/mkdocs.yml +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/pyproject.toml +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/src/[[ project_slug ]]/__init__.py +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/src/[[ project_slug ]]/py.typed +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/tests/conftest.py +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/tests/integration/test_placeholder.py +0 -0
- {templatepy-0.8.0 → templatepy-0.8.2}/template/tests/unit/test_placeholder.py +0 -0
templatepy-0.8.2/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.8.2
|
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
# Update: copier update (inside an existing generated project)
|
|
4
4
|
|
|
5
5
|
_subdirectory: template
|
|
6
|
+
# Render every file's content. Template files carry no `.jinja` suffix; copier
|
|
7
|
+
# >=9.2 defaults `_templates_suffix` to ".jinja", which would copy files
|
|
8
|
+
# verbatim and leak literal [[ ]] tokens into generated projects.
|
|
9
|
+
_templates_suffix: ""
|
|
6
10
|
_min_copier_version: "9.0"
|
|
7
11
|
_answers_file: .copier-answers.yml
|
|
8
12
|
|
|
@@ -69,10 +73,8 @@ license_type:
|
|
|
69
73
|
type: str
|
|
70
74
|
help: "Licence for the generated project. noncommercial = custom MSW licence (research/academic only, no commercial use without agreement). bsd3 = BSD-3-Clause (hardware wrappers and utilities — allows commercial use)."
|
|
71
75
|
choices:
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
- value: bsd3
|
|
75
|
-
name: "BSD-3-Clause (hardware wrappers / utilities)"
|
|
76
|
+
"Custom noncommercial (MSW default)": noncommercial
|
|
77
|
+
"BSD-3-Clause (hardware wrappers / utilities)": bsd3
|
|
76
78
|
default: noncommercial
|
|
77
79
|
|
|
78
80
|
private_repo_deps:
|
|
@@ -40,7 +40,7 @@ include = ["src", "copier.yaml", "template", "CITATION.cff", "README.md", "VERSI
|
|
|
40
40
|
|
|
41
41
|
[tool.commitizen]
|
|
42
42
|
version_provider = "commitizen"
|
|
43
|
-
version = "0.8.
|
|
43
|
+
version = "0.8.2"
|
|
44
44
|
version_files = ["VERSION"]
|
|
45
45
|
tag_format = "v$version"
|
|
46
46
|
update_changelog_on_bump = false
|
|
@@ -82,6 +82,7 @@ jobs:
|
|
|
82
82
|
steps:
|
|
83
83
|
- name: Check required jobs
|
|
84
84
|
run: |
|
|
85
|
+
[% raw %]
|
|
85
86
|
if [[ "${{ needs.lint.result }}" != "success" && "${{ needs.lint.result }}" != "skipped" ]]; then
|
|
86
87
|
echo "lint failed" && exit 1
|
|
87
88
|
fi
|
|
@@ -89,3 +90,4 @@ jobs:
|
|
|
89
90
|
echo "test failed" && exit 1
|
|
90
91
|
fi
|
|
91
92
|
echo "All required checks passed."
|
|
93
|
+
[% endraw %]
|
templatepy-0.8.0/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.8.0
|
|
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
|