Skip to content

Commit ec5102c

Browse files
authored
Merge pull request #24 from robust-python/release/0.12.0
Release/0.12.0
2 parents a1d8af6 + 4c5e9c5 commit ec5102c

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
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": "cb68ad582ad08db03dbb78f117aa8aae01ab34c9",
2+
"_commit": "446d2b456c3708911bfa0735fc28c5ec083b5a9e",
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": "cb68ad582ad08db03dbb78f117aa8aae01ab34c9",
3+
"commit": "446d2b456c3708911bfa0735fc28c5ec083b5a9e",
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": "cb68ad582ad08db03dbb78f117aa8aae01ab34c9",
23+
"_commit": "446d2b456c3708911bfa0735fc28c5ec083b5a9e",
2424
"_min_python_version_minor_int": 10,
2525
"_max_python_version_minor_int": 14,
2626
"python_versions": [

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## v0.12.0 (2025-11-24)
2+
13
## v0.11.0 (2025-11-24)
24

35
## v0.10.0 (2025-11-24)

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import os
44
import shlex
5+
import shutil
56
from pathlib import Path
67
from textwrap import dedent
78
from typing import List
@@ -117,9 +118,10 @@ def typecheck(session: Session) -> None:
117118
"""Run static type checking (Basedpyright) on Python code."""
118119
session.log("Installing type checking dependencies...")
119120
session.install("-e", ".", "--group", "dev")
121+
python_path: Path = Path(shutil.which("python", path=session.bin))
120122

121123
session.log(f"Running Basedpyright check with py{session.python}.")
122-
session.run("basedpyright", "--pythonversion", session.python)
124+
session.run("basedpyright", "--pythonversion", session.python, "--pythonpath", python_path)
123125

124126

125127
@nox.session(python=False, name="security-python", tags=[SECURITY])

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "robust-maturin-demo"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "robust-maturin-demo"
55
authors = [
66
{ name = "Kyle Oliver", email = "[email protected]" },

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)