Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: '6957226'
_commit: 98c8f14
_src_path: https://github.com/python-project-templates/base.git
add_extension: cpp
email: 3105306+timkpaine@users.noreply.github.com
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,40 @@ jobs:
cibuildwheel: "cp311"
- python-version: "3.9"
cibuildwheel: "cp312"
- python-version: "3.9"
cibuildwheel: "cp313"
- python-version: "3.10"
cibuildwheel: "cp39"
- python-version: "3.10"
cibuildwheel: "cp311"
- python-version: "3.10"
cibuildwheel: "cp312"
- python-version: "3.10"
cibuildwheel: "cp313"
- python-version: "3.11"
cibuildwheel: "cp39"
- python-version: "3.11"
cibuildwheel: "cp310"
- python-version: "3.11"
cibuildwheel: "cp312"
- python-version: "3.11"
cibuildwheel: "cp313"
- python-version: "3.12"
cibuildwheel: "cp39"
- python-version: "3.12"
cibuildwheel: "cp310"
- python-version: "3.12"
cibuildwheel: "cp311"
- python-version: "3.12"
cibuildwheel: "cp313"
- python-version: "3.13"
cibuildwheel: "cp39"
- python-version: "3.13"
cibuildwheel: "cp310"
- python-version: "3.13"
cibuildwheel: "cp311"
- python-version: "3.13"
cibuildwheel: "cp312"

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ A C++-Python project template
[![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)
[![License](https://img.shields.io/github/license/python-project-templates/python-template-cpp)](https://github.com/python-project-templates/python-template-cpp)
[![PyPI](https://img.shields.io/pypi/v/python-template-cpp.svg)](https://pypi.python.org/pypi/python-template-cpp)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/python-project-templates/python-template-cpp/main?urlpath=lab)

## Overview

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

dependencies = []
Expand Down Expand Up @@ -88,7 +89,7 @@ archs = "arm64"

[tool.cibuildwheel.windows]
archs = "AMD64"
skip = "*win32 *arm_64"
skip = "*win32 *arm_64"

[tool.coverage.run]
branch = true
Expand Down
Loading