From 81d1d0db6db91d6900713acf6ad499685e228233 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Mon, 24 Nov 2025 17:30:21 -0500 Subject: [PATCH 1/2] chore: update demo to the latest cookiecutter-robust-python --- .cookiecutter.json | 2 +- .cruft.json | 4 ++-- noxfile.py | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index 54b801b..d165dc9 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "cb68ad582ad08db03dbb78f117aa8aae01ab34c9", + "_commit": "446d2b456c3708911bfa0735fc28c5ec083b5a9e", "_max_python_version_minor_int": 14, "_min_python_version_minor_int": 10, "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", diff --git a/.cruft.json b/.cruft.json index a20b623..97240fb 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "cb68ad582ad08db03dbb78f117aa8aae01ab34c9", + "commit": "446d2b456c3708911bfa0735fc28c5ec083b5a9e", "checkout": null, "context": { "cookiecutter": { @@ -20,7 +20,7 @@ "license": "MIT", "development_status": "Development Status :: 1 - Planning", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "_commit": "cb68ad582ad08db03dbb78f117aa8aae01ab34c9", + "_commit": "446d2b456c3708911bfa0735fc28c5ec083b5a9e", "_min_python_version_minor_int": 10, "_max_python_version_minor_int": 14, "python_versions": [ diff --git a/noxfile.py b/noxfile.py index 9579bac..28e08c4 100644 --- a/noxfile.py +++ b/noxfile.py @@ -2,6 +2,7 @@ import os import shlex +import shutil from pathlib import Path from textwrap import dedent from typing import List @@ -99,9 +100,10 @@ def typecheck(session: Session) -> None: """Run static type checking (Basedpyright) on Python code.""" session.log("Installing type checking dependencies...") session.install("-e", ".", "--group", "dev") + python_path: Path = Path(shutil.which("python", path=session.bin)) session.log(f"Running Basedpyright check with py{session.python}.") - session.run("basedpyright", "--pythonversion", session.python) + session.run("basedpyright", "--pythonversion", session.python, "--pythonpath", python_path) @nox.session(python=False, name="security-python", tags=[SECURITY]) From ba0af960af17aacff8ab78ed0265a55f940c7cf1 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Mon, 24 Nov 2025 17:31:33 -0500 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.35.0=20=E2=86=92=200.36?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f5d089..583cbea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.36.0 (2025-11-24) + ## v0.35.0 (2025-11-24) ## v0.34.0 (2025-11-24) diff --git a/pyproject.toml b/pyproject.toml index c1cebe8..ebb3855 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.35.0" +version = "0.36.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" }, diff --git a/uv.lock b/uv.lock index 0c2ed60..71ebe60 100644 --- a/uv.lock +++ b/uv.lock @@ -1004,7 +1004,7 @@ wheels = [ [[package]] name = "robust-python-demo" -version = "0.35.0" +version = "0.36.0" source = { editable = "." } dependencies = [ { name = "loguru" },