templatepy 0.2.5__tar.gz → 0.2.6.dev0__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.2.5 → templatepy-0.2.6.dev0}/.bumpversion.cfg +1 -1
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/PKG-INFO +12 -2
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/README.md +11 -1
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/pyproject.toml +1 -1
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy/__init__.py +1 -1
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy.egg-info/PKG-INFO +12 -2
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/.gitignore +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/.pre-commit-config.yaml +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/.secrets.baseline +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/CODE_OF_CONDUCT.md +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/CONTRIBUTING.md +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/LICENSE +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/MANIFEST.in +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/setup.cfg +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/setup.py +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy/example.data.file.config +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy/example.data.file.test-extension-yu48 +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy.egg-info/SOURCES.txt +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy.egg-info/dependency_links.txt +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy.egg-info/entry_points.txt +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy.egg-info/not-zip-safe +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy.egg-info/requires.txt +0 -0
- {templatepy-0.2.5 → templatepy-0.2.6.dev0}/templatepy.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: templatepy
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6.dev0
|
|
4
4
|
Summary: templatepy: Template repo for python repositories & PyPi integration
|
|
5
5
|
Author-email: "Lars B. Rollik" <L.B.Rollik@protonmail.com>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -92,7 +92,7 @@ Requires-Dist: toml; extra == "dev"
|
|
|
92
92
|
# templatepy
|
|
93
93
|
Template repo for python repositories & PyPi integration
|
|
94
94
|
---
|
|
95
|
-
**Version: "0.2.
|
|
95
|
+
**Version: "0.2.6.dev0"**
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
## Usage
|
|
@@ -336,6 +336,16 @@ For further reading on the transition to `pyproject.toml` and the removal of `se
|
|
|
336
336
|
- [PEP-518](https://peps.python.org/pep-0518/)
|
|
337
337
|
- [Discussion on Setup.cfg Deprecation](https://stackoverflow.com/questions/44878600/is-setup-cfg-deprecated)
|
|
338
338
|
|
|
339
|
+
#### Using Github CLI in actions workflows
|
|
340
|
+
|
|
341
|
+
[CLI in actions (docs)](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/using-github-cli-in-workflows)
|
|
342
|
+
|
|
343
|
+
```yaml
|
|
344
|
+
- name: Create a pull request
|
|
345
|
+
run: gh pr create --title "My pull request" --body "This is an amazing PR" --label bug
|
|
346
|
+
env:
|
|
347
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
348
|
+
```
|
|
339
349
|
|
|
340
350
|
## Common issues
|
|
341
351
|
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
# templatepy
|
|
36
36
|
Template repo for python repositories & PyPi integration
|
|
37
37
|
---
|
|
38
|
-
**Version: "0.2.
|
|
38
|
+
**Version: "0.2.6.dev0"**
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
## Usage
|
|
@@ -279,6 +279,16 @@ For further reading on the transition to `pyproject.toml` and the removal of `se
|
|
|
279
279
|
- [PEP-518](https://peps.python.org/pep-0518/)
|
|
280
280
|
- [Discussion on Setup.cfg Deprecation](https://stackoverflow.com/questions/44878600/is-setup-cfg-deprecated)
|
|
281
281
|
|
|
282
|
+
#### Using Github CLI in actions workflows
|
|
283
|
+
|
|
284
|
+
[CLI in actions (docs)](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/using-github-cli-in-workflows)
|
|
285
|
+
|
|
286
|
+
```yaml
|
|
287
|
+
- name: Create a pull request
|
|
288
|
+
run: gh pr create --title "My pull request" --body "This is an amazing PR" --label bug
|
|
289
|
+
env:
|
|
290
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
291
|
+
```
|
|
282
292
|
|
|
283
293
|
## Common issues
|
|
284
294
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: templatepy
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6.dev0
|
|
4
4
|
Summary: templatepy: Template repo for python repositories & PyPi integration
|
|
5
5
|
Author-email: "Lars B. Rollik" <L.B.Rollik@protonmail.com>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -92,7 +92,7 @@ Requires-Dist: toml; extra == "dev"
|
|
|
92
92
|
# templatepy
|
|
93
93
|
Template repo for python repositories & PyPi integration
|
|
94
94
|
---
|
|
95
|
-
**Version: "0.2.
|
|
95
|
+
**Version: "0.2.6.dev0"**
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
## Usage
|
|
@@ -336,6 +336,16 @@ For further reading on the transition to `pyproject.toml` and the removal of `se
|
|
|
336
336
|
- [PEP-518](https://peps.python.org/pep-0518/)
|
|
337
337
|
- [Discussion on Setup.cfg Deprecation](https://stackoverflow.com/questions/44878600/is-setup-cfg-deprecated)
|
|
338
338
|
|
|
339
|
+
#### Using Github CLI in actions workflows
|
|
340
|
+
|
|
341
|
+
[CLI in actions (docs)](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/using-github-cli-in-workflows)
|
|
342
|
+
|
|
343
|
+
```yaml
|
|
344
|
+
- name: Create a pull request
|
|
345
|
+
run: gh pr create --title "My pull request" --body "This is an amazing PR" --label bug
|
|
346
|
+
env:
|
|
347
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
348
|
+
```
|
|
339
349
|
|
|
340
350
|
## Common issues
|
|
341
351
|
|
|
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
|