Skip to content

Commit 1aad7ab

Browse files
Update from copier (2026-07-10T23:06:26)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 92989c5 commit 1aad7ab

4 files changed

Lines changed: 7 additions & 22 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: dbcb02b
2+
_commit: c184e53
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: cpp

.github/workflows/build.yaml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,35 +30,22 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest, macos-latest, windows-latest]
33-
python-version: [ "3.10", "3.11", "3.12", "3.13"]
34-
cibuildwheel: ["cp310", "cp311", "cp312", "cp313"]
33+
python-version: ["3.11", "3.12", "3.13"]
34+
cibuildwheel: ["cp311", "cp312", "cp313"]
3535
exclude:
36-
- python-version: "3.10"
37-
cibuildwheel: "cp311"
38-
- python-version: "3.10"
39-
cibuildwheel: "cp312"
40-
- python-version: "3.10"
41-
cibuildwheel: "cp313"
42-
- python-version: "3.11"
43-
cibuildwheel: "cp310"
4436
- python-version: "3.11"
4537
cibuildwheel: "cp312"
4638
- python-version: "3.11"
4739
cibuildwheel: "cp313"
48-
- python-version: "3.12"
49-
cibuildwheel: "cp310"
5040
- python-version: "3.12"
5141
cibuildwheel: "cp311"
5242
- python-version: "3.12"
5343
cibuildwheel: "cp313"
54-
- python-version: "3.13"
55-
cibuildwheel: "cp310"
5644
- python-version: "3.13"
5745
cibuildwheel: "cp311"
5846
- python-version: "3.13"
5947
cibuildwheel: "cp312"
60-
61-
steps:
48+
steps:
6249
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
6350

6451
- uses: actions-ext/python/setup@main

.github/workflows/wiki.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2424
- run: cp README.md docs/wiki/Home.md
25-
- uses: Andrew-Chen-Wang/github-wiki-action@4e78882ff52f8751488e506e49b221145506ee34 # v5.0.5
25+
- uses: Andrew-Chen-Wang/github-wiki-action@64efa0a9436db17670a2259e0ac249d6f08bb352 # v5.0.4
2626
with:
2727
path: docs/wiki

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description = "A C++-Python project template"
1515
readme = "README.md"
1616
license = { text = "Apache-2.0" }
1717
version = "0.1.0"
18-
requires-python = ">=3.10"
18+
requires-python = ">=3.11"
1919
keywords = []
2020

2121
classifiers = [
@@ -24,7 +24,6 @@ classifiers = [
2424
"Programming Language :: Python :: Implementation :: CPython",
2525
"Programming Language :: Python :: Implementation :: PyPy",
2626
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
3029
"Programming Language :: Python :: 3.13",
@@ -77,7 +76,7 @@ search = 'version = "{current_version}"'
7776
replace = 'version = "{new_version}"'
7877

7978
[tool.cibuildwheel]
80-
build = "cp310-* cp311-* cp312-* cp313-*"
79+
build = "cp311-* cp312-* cp313-*"
8180
test-command = "echo 'TODO'"
8281
test-extras = "develop"
8382

@@ -176,4 +175,3 @@ root = "README.md"
176175
pages = []
177176
use-autoapi = true
178177

179-

0 commit comments

Comments
 (0)