Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_commit": "e3e4bd38305f544bffe1025111aa2981f1e51714",
"_commit": "6c15657aca7c82216277b96b580860e54d2953da",
"_max_python_version_minor_int": 14,
"_min_python_version_minor_int": 10,
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
Expand Down
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"commit": "e3e4bd38305f544bffe1025111aa2981f1e51714",
"commit": "6c15657aca7c82216277b96b580860e54d2953da",
"checkout": null,
"context": {
"cookiecutter": {
Expand All @@ -20,7 +20,7 @@
"license": "MIT",
"development_status": "Development Status :: 1 - Planning",
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"_commit": "e3e4bd38305f544bffe1025111aa2981f1e51714",
"_commit": "6c15657aca7c82216277b96b580860e54d2953da",
"_min_python_version_minor_int": 10,
"_max_python_version_minor_int": 14,
"python_versions": [
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def setup_git(session: Session) -> None:
@nox.session(python=False, name="setup-remote")
def setup_remote(session: Session) -> None:
"""Set up the remote repository for the current project."""
command: list[str] = [
command: list[str | Path] = [
"python",
SCRIPTS_FOLDER / "setup-remote.py",
REPO_ROOT,
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ docs = [
Homepage = "https://github.com/56kyle/robust-python-demo"
Repository = "https://github.com/56kyle/robust-python-demo"

[tool.uv]
exclude-newer = "1 week"

[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def setup_release(increment: Optional[str] = None) -> None:
raise error


def _setup_release(increment: str, current_version: str, new_version: str) -> None:
def _setup_release(increment: Optional[str], current_version: str, new_version: str) -> None:
"""Prepares a release of the robust-python-demo package.

Sets up a release branch from the branch develop, bumps the version, and creates a release commit. Does not tag the
Expand Down
Loading
Loading