Skip to content

Commit e2028fc

Browse files
committed
chore: update demo to the latest cookiecutter-robust-python
1 parent 9340c95 commit e2028fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "5b41872fc9214be197fe0973ccd870589ce18f77",
2+
"_commit": "8cc5fcc6ded1cd4e6fc748b0ed0acb7e664df367",
33
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
44
"add_rust_extension": false,
55
"author": "Kyle Oliver",

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
3-
"commit": "5b41872fc9214be197fe0973ccd870589ce18f77",
3+
"commit": "8cc5fcc6ded1cd4e6fc748b0ed0acb7e664df367",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -18,7 +18,7 @@
1818
"license": "MIT",
1919
"development_status": "Development Status :: 1 - Planning",
2020
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
21-
"_commit": "5b41872fc9214be197fe0973ccd870589ce18f77"
21+
"_commit": "8cc5fcc6ded1cd4e6fc748b0ed0acb7e664df367"
2222
}
2323
},
2424
"directory": null

scripts/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def get_package_version() -> str:
6767

6868
def get_bumped_package_version(increment: Optional[str] = None) -> str:
6969
"""Gets the bumped package version."""
70-
args: list[str] = ["uvx", "--with", "commitizen", "cz", "bump", "--get-next", "--yes", "--dry-run"]
70+
args: list[str] = ["uvx", "--from", "commitizen", "cz", "bump", "--get-next", "--yes", "--dry-run"]
7171
if increment is not None:
7272
args.extend(["--increment", increment])
7373
result: subprocess.CompletedProcess = subprocess.run(args, cwd=REPO_FOLDER, capture_output=True)

0 commit comments

Comments
 (0)