Skip to content

Commit 199886f

Browse files
authored
Merge pull request #45 from robust-python/release/0.30.0
Release/0.30.0
2 parents 264bd7c + c3d913b commit 199886f

18 files changed

+110
-310
lines changed

.cookiecutter.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "c0dc52f406bfda76f69a2a9ed9694bf15d213d34",
2+
"_commit": "b34f76d47340e575885b5a23a58d974734369ed5",
33
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
44
"add_rust_extension": false,
55
"author": "Kyle Oliver",
@@ -8,8 +8,8 @@
88
"email": "56kyleoliver+cookiecutter-robust-python@gmail.com",
99
"friendly_name": "Robust Python Demo",
1010
"license": "MIT",
11-
"max_python_version": "3.13",
12-
"min_python_version": "3.9",
11+
"max_python_version": "3.14",
12+
"min_python_version": "3.10",
1313
"package_name": "robust_python_demo",
1414
"project_name": "robust-python-demo",
1515
"repository_host": "github.com",

.cruft.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
3-
"commit": "c0dc52f406bfda76f69a2a9ed9694bf15d213d34",
3+
"commit": "b34f76d47340e575885b5a23a58d974734369ed5",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
77
"project_name": "robust-python-demo",
88
"package_name": "robust_python_demo",
99
"friendly_name": "Robust Python Demo",
10-
"min_python_version": "3.9",
11-
"max_python_version": "3.13",
10+
"min_python_version": "3.10",
11+
"max_python_version": "3.14",
1212
"add_rust_extension": false,
1313
"author": "Kyle Oliver",
1414
"email": "56kyleoliver+cookiecutter-robust-python@gmail.com",
@@ -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": "c0dc52f406bfda76f69a2a9ed9694bf15d213d34"
23+
"_commit": "b34f76d47340e575885b5a23a58d974734369ed5"
2424
}
2525
},
2626
"directory": null

.github/workflows/.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13
1+
3.14

.github/workflows/test-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
strategy:
3434
matrix:
3535
include:
36-
- { python: "3.9", os: "ubuntu-latest" }
3736
- { python: "3.10", os: "ubuntu-latest" }
3837
- { python: "3.11", os: "ubuntu-latest" }
3938
- { python: "3.12", os: "ubuntu-latest" }
4039
- { python: "3.13", os: "ubuntu-latest" }
41-
- { python: "3.13", os: "macos-latest" }
42-
- { python: "3.13", os: "windows-latest" }
40+
- { python: "3.14", os: "ubuntu-latest" }
41+
- { python: "3.14", os: "macos-latest" }
42+
- { python: "3.14", os: "windows-latest" }
4343
steps:
4444
- name: Checkout code
4545
uses: actions/checkout@v4

.github/workflows/typecheck-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ${{ matrix.os }}
3535
strategy:
3636
matrix:
37-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
37+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3838
os: [ubuntu-latest]
3939

4040
steps:

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.13"
6+
python: "3.14"
77

88
python:
99
install:

.ruff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ exclude = [
3333
line-length = 120
3434
indent-width = 4
3535

36-
# Assume Python 3.9
37-
target-version = "py39"
36+
# Assume Python 3.10
37+
target-version = "py310"
3838

3939
[lint]
4040
# https://docs.astral.sh/ruff/rules

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
## v0.30.0 (2025-11-10)
2+
3+
## v0.27.0 (2025-09-18)
4+
5+
## v0.26.0 (2025-09-18)
6+
7+
## v0.25.0 (2025-09-18)
8+
9+
## v0.24.0 (2025-08-01)
10+
11+
## v0.23.0 (2025-08-01)
12+
13+
## v0.22.0 (2025-07-29)
14+
15+
## v0.21.0 (2025-07-27)
16+
17+
## v0.20.0 (2025-07-27)
18+
19+
## v0.19.0 (2025-07-27)
20+
21+
## v0.18.0 (2025-07-27)
22+
23+
## v0.17.0 (2025-07-26)
24+
25+
## v0.16.0 (2025-07-26)
26+
27+
## v0.14.0 (2025-07-18)
28+
29+
## v0.13.0 (2025-07-18)
30+
31+
## v0.12.0 (2025-07-18)
32+
33+
## v0.11.0 (2025-07-18)
34+
35+
## v0.10.0 (2025-07-18)
36+
137
## v0.29.0 (2025-11-02)
238

339
## v0.27.0 (2025-09-18)

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
[56kyleoliver@gmail.com](mailto:56kyleoliver@gmail.com).
63+
[cookiecutter.robust.python@gmail.com](mailto:cookiecutter.robust.python@gmail.com).
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ We welcome pull requests! For significant changes, it's best to open an issue fi
3333

3434
### Prerequisites
3535

36-
- Python 3.9+ (this project supports Python 3.9-3.13)
36+
- Python 3.10+ (this project supports Python 3.10-3.14)
3737
- [uv][uv-documentation] for dependency management
3838
- Git for version control
3939

@@ -84,7 +84,7 @@ We welcome pull requests! For significant changes, it's best to open an issue fi
8484
uvx nox -s tests-python
8585

8686
# Run tests for a specific Python version
87-
uvx nox -s tests-python-313
87+
uvx nox -s tests-python-314
8888

8989
# Run a specific test file
9090
uvx nox -s tests-python -- tests/unit_tests/test_specific.py
@@ -210,4 +210,4 @@ _This project was generated from the [cookiecutter-robust-python][cookiecutter-r
210210
[bandit-documentation]: https://bandit.readthedocs.io/
211211
[conventional-commits]: https://www.conventionalcommits.org/
212212
[pytest-documentation]: https://docs.pytest.org/
213-
[cookiecutter-robust-python]: https://github.com/56kyle/cookiecutter-robust-python
213+
[cookiecutter-robust-python]: https://github.com/robust-python/cookiecutter-robust-python

0 commit comments

Comments
 (0)