Skip to content

Commit bf6ebb3

Browse files
Update from copier (2026-02-15T05:53:50)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1f498bf commit bf6ebb3

File tree

2 files changed

+42
-8
lines changed

2 files changed

+42
-8
lines changed

.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: b74d698
2+
_commit: 37f89c1
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

pyproject.toml

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
[build-system]
2+
<<<<<<< before updating
23
requires = ["hatchling"]
34
build-backend = "hatchling.build"
5+
=======
6+
requires = [
7+
"hatchling",
8+
]
9+
build-backend="hatchling.build"
10+
>>>>>>> after updating
411

512
[project]
613
name = "hatch-cpp"
7-
authors = [{name = "the hatch-cpp authors", email = "t.paine154@gmail.com"}]
14+
authors = [
15+
{name = "the hatch-cpp authors", email = "t.paine154@gmail.com"},
16+
]
817
description = "Hatch plugin for C++ builds"
918
readme = "README.md"
1019
license = { text = "Apache-2.0" }
@@ -54,6 +63,7 @@ develop = [
5463
"pytest-cov",
5564
"ruff>=0.9,<0.15",
5665
"twine",
66+
"ty",
5767
"uv",
5868
"wheel",
5969
# test
@@ -118,26 +128,50 @@ artifacts = []
118128
src = "/"
119129

120130
[tool.hatch.build.targets.sdist]
121-
packages = ["hatch_cpp"]
131+
packages = [
132+
"hatch_cpp",
133+
]
122134

123135
[tool.hatch.build.targets.wheel]
124-
packages = ["hatch_cpp"]
136+
packages = [
137+
"hatch_cpp",
138+
]
125139

126140
[tool.pytest.ini_options]
127-
addopts = ["-vvv", "--junitxml=junit.xml"]
141+
addopts = [
142+
"-vvv",
143+
"--junitxml=junit.xml",
144+
]
128145
testpaths = "hatch_cpp/tests"
129146

130147
[tool.ruff]
131148
line-length = 150
132149

133150
[tool.ruff.lint]
134-
extend-select = ["I"]
151+
extend-select = [
152+
"I",
153+
]
135154

136155
[tool.ruff.lint.isort]
137156
combine-as-imports = true
138157
default-section = "third-party"
139-
known-first-party = ["hatch_cpp"]
140-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
158+
known-first-party = [
159+
"hatch_cpp",
160+
]
161+
section-order = [
162+
"future",
163+
"standard-library",
164+
"third-party",
165+
"first-party",
166+
"local-folder",
167+
]
141168

142169
[tool.ruff.lint.per-file-ignores]
170+
<<<<<<< before updating
143171
"__init__.py" = ["F401", "F403"]
172+
=======
173+
"__init__.py" = [
174+
"F401",
175+
"F403",
176+
]
177+
>>>>>>> after updating

0 commit comments

Comments
 (0)