Skip to content

Commit 79218b6

Browse files
committed
chore: af8c0083f77583f9d06a0b333ac00ed1cf8c86ae -> ac14c48fcf4aa2beec006441352fbbcf0f0464cf
1 parent 0e5f0fe commit 79218b6

6 files changed

Lines changed: 1070 additions & 721 deletions

File tree

.cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "af8c0083f77583f9d06a0b333ac00ed1cf8c86ae",
2+
"_commit": "ac14c48fcf4aa2beec006441352fbbcf0f0464cf",
33
"_max_python_version_minor_int": 14,
44
"_min_python_version_minor_int": 10,
55
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",

.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": "af8c0083f77583f9d06a0b333ac00ed1cf8c86ae",
3+
"commit": "ac14c48fcf4aa2beec006441352fbbcf0f0464cf",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -20,7 +20,7 @@
2020
"license": "MIT",
2121
"development_status": "Development Status :: 1 - Planning",
2222
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
23-
"_commit": "af8c0083f77583f9d06a0b333ac00ed1cf8c86ae",
23+
"_commit": "ac14c48fcf4aa2beec006441352fbbcf0f0464cf",
2424
"_min_python_version_minor_int": 10,
2525
"_max_python_version_minor_int": 14,
2626
"python_versions": [

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def setup_git(session: Session) -> None:
5656
@nox.session(python=False, name="setup-remote")
5757
def setup_remote(session: Session) -> None:
5858
"""Set up the remote repository for the current project."""
59-
command: list[str] = [
59+
command: list[str | Path] = [
6060
"python",
6161
SCRIPTS_FOLDER / "setup-remote.py",
6262
REPO_ROOT,

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ docs = [
5858
Homepage = "https://github.com/56kyle/robust-python-demo"
5959
Repository = "https://github.com/56kyle/robust-python-demo"
6060

61+
[tool.uv]
62+
exclude-newer = "1 week"
63+
6164
[[tool.uv.index]]
6265
name = "testpypi"
6366
url = "https://test.pypi.org/simple/"

scripts/setup-release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def setup_release(increment: Optional[str] = None) -> None:
5353
raise error
5454

5555

56-
def _setup_release(increment: str, current_version: str, new_version: str) -> None:
56+
def _setup_release(increment: Optional[str], current_version: str, new_version: str) -> None:
5757
"""Prepares a release of the robust-python-demo package.
5858
5959
Sets up a release branch from the branch develop, bumps the version, and creates a release commit. Does not tag the

0 commit comments

Comments
 (0)