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.
Files changed (36) hide show
  1. templatepy-0.8.2/.gitignore +3 -0
  2. {templatepy-0.8.0 → templatepy-0.8.2}/PKG-INFO +1 -1
  3. templatepy-0.8.2/VERSION +1 -0
  4. {templatepy-0.8.0 → templatepy-0.8.2}/copier.yaml +6 -4
  5. {templatepy-0.8.0 → templatepy-0.8.2}/pyproject.toml +1 -1
  6. {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/ci.yml +2 -0
  7. templatepy-0.8.0/VERSION +0 -1
  8. {templatepy-0.8.0 → templatepy-0.8.2}/CITATION.cff +0 -0
  9. {templatepy-0.8.0 → templatepy-0.8.2}/LICENSE +0 -0
  10. {templatepy-0.8.0 → templatepy-0.8.2}/README.md +0 -0
  11. {templatepy-0.8.0 → templatepy-0.8.2}/src/templatepy/__init__.py +0 -0
  12. {templatepy-0.8.0 → templatepy-0.8.2}/template/.githooks/fix_commit_msg.py +0 -0
  13. {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  14. {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  15. {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  16. {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/docs.yml +0 -0
  17. {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/pr-review.yml +0 -0
  18. {templatepy-0.8.0 → templatepy-0.8.2}/template/.github/workflows/release.yml +0 -0
  19. {templatepy-0.8.0 → templatepy-0.8.2}/template/.gitignore +0 -0
  20. {templatepy-0.8.0 → templatepy-0.8.2}/template/.gitleaks.toml +0 -0
  21. {templatepy-0.8.0 → templatepy-0.8.2}/template/.gitlint +0 -0
  22. {templatepy-0.8.0 → templatepy-0.8.2}/template/.pre-commit-config.yaml +0 -0
  23. {templatepy-0.8.0 → templatepy-0.8.2}/template/CITATION.cff +0 -0
  24. {templatepy-0.8.0 → templatepy-0.8.2}/template/CODE_OF_CONDUCT.md +0 -0
  25. {templatepy-0.8.0 → templatepy-0.8.2}/template/CONTRIBUTING.md +0 -0
  26. {templatepy-0.8.0 → templatepy-0.8.2}/template/LICENSE +0 -0
  27. {templatepy-0.8.0 → templatepy-0.8.2}/template/README.md +0 -0
  28. {templatepy-0.8.0 → templatepy-0.8.2}/template/VERSION +0 -0
  29. {templatepy-0.8.0 → templatepy-0.8.2}/template/docs/index.md +0 -0
  30. {templatepy-0.8.0 → templatepy-0.8.2}/template/mkdocs.yml +0 -0
  31. {templatepy-0.8.0 → templatepy-0.8.2}/template/pyproject.toml +0 -0
  32. {templatepy-0.8.0 → templatepy-0.8.2}/template/src/[[ project_slug ]]/__init__.py +0 -0
  33. {templatepy-0.8.0 → templatepy-0.8.2}/template/src/[[ project_slug ]]/py.typed +0 -0
  34. {templatepy-0.8.0 → templatepy-0.8.2}/template/tests/conftest.py +0 -0
  35. {templatepy-0.8.0 → templatepy-0.8.2}/template/tests/integration/test_placeholder.py +0 -0
  36. {templatepy-0.8.0 → templatepy-0.8.2}/template/tests/unit/test_placeholder.py +0 -0
@@ -0,0 +1,3 @@
1
+ # Lock file for the template repo's own dev environment (not shipped to
2
+ # generated projects, which gitignore it via template/.gitignore).
3
+ uv.lock
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: templatepy
3
- Version: 0.8.0
3
+ Version: 0.8.2
4
4
  Summary: Copier template for modern Python packages
5
5
  Project-URL: Homepage, https://github.com/larsrollik/templatepy
6
6
  Project-URL: Documentation, https://larsrollik.github.io/templatepy
@@ -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
- - value: noncommercial
73
- name: "Custom noncommercial (MSW default)"
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.0"
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