Skip to content

Commit 1787e80

Browse files
authored
Merge pull request #11 from python-project-templates/copier-update-2025-04-13T05-18-13
Update from copier (2025-04-13T05:18:13)
2 parents d29f72b + 2ea5e0e commit 1787e80

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

Diff for: .copier-answers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: '6957226'
2+
_commit: 98c8f14
33
_src_path: https://github.com/python-project-templates/base.git
44
add_extension: cpp
55

Diff for: .github/workflows/build.yml

+16
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,40 @@ jobs:
3939
cibuildwheel: "cp311"
4040
- python-version: "3.9"
4141
cibuildwheel: "cp312"
42+
- python-version: "3.9"
43+
cibuildwheel: "cp313"
4244
- python-version: "3.10"
4345
cibuildwheel: "cp39"
4446
- python-version: "3.10"
4547
cibuildwheel: "cp311"
4648
- python-version: "3.10"
4749
cibuildwheel: "cp312"
50+
- python-version: "3.10"
51+
cibuildwheel: "cp313"
4852
- python-version: "3.11"
4953
cibuildwheel: "cp39"
5054
- python-version: "3.11"
5155
cibuildwheel: "cp310"
5256
- python-version: "3.11"
5357
cibuildwheel: "cp312"
58+
- python-version: "3.11"
59+
cibuildwheel: "cp313"
5460
- python-version: "3.12"
5561
cibuildwheel: "cp39"
5662
- python-version: "3.12"
5763
cibuildwheel: "cp310"
5864
- python-version: "3.12"
5965
cibuildwheel: "cp311"
66+
- python-version: "3.12"
67+
cibuildwheel: "cp313"
68+
- python-version: "3.13"
69+
cibuildwheel: "cp39"
70+
- python-version: "3.13"
71+
cibuildwheel: "cp310"
72+
- python-version: "3.13"
73+
cibuildwheel: "cp311"
74+
- python-version: "3.13"
75+
cibuildwheel: "cp312"
6076

6177
steps:
6278
- uses: actions/checkout@v4

Diff for: README.md

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ A C++-Python project template
66
[![codecov](https://codecov.io/gh/python-project-templates/python-template-cpp/branch/main/graph/badge.svg)](https://codecov.io/gh/python-project-templates/python-template-cpp)
77
[![License](https://img.shields.io/github/license/python-project-templates/python-template-cpp)](https://github.com/python-project-templates/python-template-cpp)
88
[![PyPI](https://img.shields.io/pypi/v/python-template-cpp.svg)](https://pypi.python.org/pypi/python-template-cpp)
9-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/python-project-templates/python-template-cpp/main?urlpath=lab)
109

1110
## Overview
1211

Diff for: pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
2930
]
3031

3132
dependencies = []
@@ -88,7 +89,7 @@ archs = "arm64"
8889

8990
[tool.cibuildwheel.windows]
9091
archs = "AMD64"
91-
skip = "*win32 *arm_64"
92+
skip = "*win32 *arm_64"
9293

9394
[tool.coverage.run]
9495
branch = true

0 commit comments

Comments
 (0)