From 187c48ea1ac10f84e233d81b27139d14d67be01d Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sat, 26 Jul 2025 16:47:15 -0400 Subject: [PATCH 1/2] chore: update demo to the latest cookiecutter-robust-python --- .cookiecutter.json | 2 +- .cruft.json | 4 ++-- .readthedocs.yml | 9 +++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index 5ca7475..c6743ec 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "7ade588e584688544482379ce3b50740f61702c3", + "_commit": "fb9bab58edae3babd127219b4613c4cbf76e1fd0", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", "add_rust_extension": false, "author": "Kyle Oliver", diff --git a/.cruft.json b/.cruft.json index f6753b7..7f01911 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "7ade588e584688544482379ce3b50740f61702c3", + "commit": "fb9bab58edae3babd127219b4613c4cbf76e1fd0", "checkout": null, "context": { "cookiecutter": { @@ -18,7 +18,7 @@ "license": "MIT", "development_status": "Development Status :: 1 - Planning", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "_commit": "7ade588e584688544482379ce3b50740f61702c3" + "_commit": "fb9bab58edae3babd127219b4613c4cbf76e1fd0" } }, "directory": null diff --git a/.readthedocs.yml b/.readthedocs.yml index 20d4181..65417e1 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -4,5 +4,14 @@ build: os: ubuntu-22.04 tools: python: "3.13" + +python: + install: + # This is required for ReadTheDocs to consider it a Python project and install dependencies. + - method: pip + path: . + extra_requirements: + - docs + sphinx: configuration: docs/conf.py From 791b679e7949fe5f7cf7a090be25ecf39421dcc5 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sat, 26 Jul 2025 16:48:15 -0400 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.16.0=20=E2=86=92=200.17?= =?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 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e19ade..48e36f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.17.0 (2025-07-26) + ## v0.16.0 (2025-07-26) ## v0.14.0 (2025-07-18) diff --git a/pyproject.toml b/pyproject.toml index 801f850..cae348b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.16.0" +version = "0.17.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },