Skip to content

Commit cc4de8b

Browse files
authored
Merge pull request #74 from python-project-templates/copier-update-2025-11-09T05-22-27
Update from copier (2025-11-09T05:22:27)
2 parents ad5328e + 1da88f5 commit cc4de8b

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.copier-answers.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 18afe0a
2+
_commit: 973c39c
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: rust
@@ -8,5 +8,5 @@ email: 3105306+timkpaine@users.noreply.github.com
88
github: python-project-templates
99
project_description: A Rust-Python project template
1010
project_name: python template rust
11-
python_version_primary: '3.9'
11+
python_version_primary: '3.11'
1212
team: Python Project Template Authors

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest, macos-latest, windows-latest]
33-
python-version: ["3.9"]
33+
python-version: ["3.11"]
3434

3535
steps:
3636
- uses: actions/checkout@v5

docs/wiki/Installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Pre-requisites
22

3-
You need Python >=3.9 on your machine to install `python-template-rust`.
3+
You need Python >=3.10 on your machine to install `python-template-rust`.
44

55
## Install with `pip`
66

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "A Rust-Python project template"
99
readme = "README.md"
1010
license = { text = "Apache-2.0" }
1111
version = "0.1.0"
12-
requires-python = ">=3.9"
12+
requires-python = ">=3.10"
1313
keywords = []
1414

1515
classifiers = [
@@ -19,7 +19,6 @@ classifiers = [
1919
"Programming Language :: Python :: Implementation :: CPython",
2020
"Programming Language :: Python :: Implementation :: PyPy",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
@@ -92,7 +91,7 @@ ignore = [
9291
]
9392

9493
[tool.cibuildwheel]
95-
build = "cp39-*"
94+
build = "cp310-*"
9695
test-command = "pytest -vvv {project}/python_template_rust/tests"
9796
test-requires = ["pytest", "pytest-cov", "pytest-sugar", "pytest-xdist"]
9897

0 commit comments

Comments
 (0)