Skip to content

Commit 05a0bc4

Browse files
authored
Merge pull request #34 from python-project-templates/copier-update-2025-11-09T05-15-50
Update from copier (2025-11-09T05:15:50)
2 parents 27f0210 + 7cc2506 commit 05a0bc4

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
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: 68f3543
2+
_commit: 973c39c
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: rustjswasm
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest, macos-latest, windows-latest]
33-
python-version: ["3.9"]
34-
cibuildwheel: ["cp39"]
33+
python-version: ["3.11"]
34+
cibuildwheel: ["cp311"]
3535
node-version: [20.x]
3636

3737
steps:

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",
@@ -107,7 +106,7 @@ ignore = [
107106
]
108107

109108
[tool.cibuildwheel]
110-
build = "cp39-*"
109+
build = "cp310-*"
111110
test-command = "pytest -vvv {project}/python_template_rust/tests"
112111
test-requires = ["pytest", "pytest-cov", "pytest-sugar", "pytest-xdist"]
113112

0 commit comments

Comments
 (0)