Skip to content

Commit c9c2475

Browse files
Update from copier (2026-07-12T06:02:13)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 433952c commit c9c2475

3 files changed

Lines changed: 29 additions & 3 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: 392c67f
2+
_commit: '4875149'
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: cpp

.github/workflows/build.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,29 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest, macos-latest, windows-latest]
33+
<<<<<<< before updating
3334
python-version: [ "3.10"]
3435
cibuildwheel: ["cp310"]
3536

3637
steps:
38+
=======
39+
python-version: ["3.11", "3.12", "3.13"]
40+
cibuildwheel: ["cp311", "cp312", "cp313"]
41+
exclude:
42+
- python-version: "3.11"
43+
cibuildwheel: "cp312"
44+
- python-version: "3.11"
45+
cibuildwheel: "cp313"
46+
- python-version: "3.12"
47+
cibuildwheel: "cp311"
48+
- python-version: "3.12"
49+
cibuildwheel: "cp313"
50+
- python-version: "3.13"
51+
cibuildwheel: "cp311"
52+
- python-version: "3.13"
53+
cibuildwheel: "cp312"
54+
steps:
55+
>>>>>>> after updating
3756
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3857

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

pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ authors = [
1313
description = "Generic, framework-agnostic infrastructure for compiling Python functions to Numba @cfunc via AST transformation"
1414
readme = "README.md"
1515
license = { text = "Apache-2.0" }
16+
<<<<<<< before updating
1617
version = "0.1.1"
1718
requires-python = ">=3.10"
19+
=======
20+
version = "0.1.0"
21+
requires-python = ">=3.11"
22+
>>>>>>> after updating
1823
keywords = []
1924

2025
classifiers = [
@@ -23,7 +28,6 @@ classifiers = [
2328
"Programming Language :: Python :: Implementation :: CPython",
2429
"Programming Language :: Python :: Implementation :: PyPy",
2530
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.10",
2731
"Programming Language :: Python :: 3.11",
2832
"Programming Language :: Python :: 3.12",
2933
"Programming Language :: Python :: 3.13",
@@ -78,7 +82,11 @@ search = 'version = "{current_version}"'
7882
replace = 'version = "{new_version}"'
7983

8084
[tool.cibuildwheel]
85+
<<<<<<< before updating
8186
build = "cp310-*"
87+
=======
88+
build = "cp311-* cp312-* cp313-*"
89+
>>>>>>> after updating
8290
test-command = "echo 'TODO'"
8391
test-extras = "develop"
8492

@@ -166,4 +174,3 @@ section-order = [
166174
"F401",
167175
"F403",
168176
]
169-

0 commit comments

Comments
 (0)