Skip to content

Commit 02390bc

Browse files
Update from copier (2026-02-15T05:55:22)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0d8b62c commit 02390bc

File tree

2 files changed

+46
-10
lines changed

2 files changed

+46
-10
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: 47f880e
2+
_commit: 37f89c1
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: jupyter

pyproject.toml

Lines changed: 45 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
[build-system]
2-
requires = ["hatchling", "hatch-js", "jupyterlab>=4,<5"]
2+
requires = [
3+
"hatchling",
4+
"hatch-js",
5+
"jupyterlab>=4,<5",
6+
]
37
build-backend="hatchling.build"
48

59
[project]
610
name = "python-template-jupyter"
7-
authors = [{name = "Python Project Template Authors", email = "3105306+timkpaine@users.noreply.github.com"}]
11+
authors = [
12+
{name = "Python Project Template Authors", email = "3105306+timkpaine@users.noreply.github.com"},
13+
]
814
description = "A Jupyter-Python project template"
915
readme = "README.md"
1016
license = { text = "Apache-2.0" }
@@ -44,6 +50,8 @@ develop = [
4450
"pytest-cov",
4551
"ruff>=0.9,<0.15",
4652
"twine",
53+
"ty",
54+
"uv",
4755
"wheel",
4856
]
4957

@@ -112,14 +120,19 @@ artifacts = [
112120
src = "/"
113121

114122
[tool.hatch.build.targets.sdist]
115-
packages = ["python_template_jupyter", "js"]
123+
packages = [
124+
"python_template_jupyter",
125+
"js",
126+
]
116127
exclude = [
117128
"/js/dist",
118129
"/js/node_modules",
119130
]
120131

121132
[tool.hatch.build.targets.wheel]
122-
packages = ["python_template_jupyter"]
133+
packages = [
134+
"python_template_jupyter",
135+
]
123136
exclude = [
124137
"/js"
125138
]
@@ -139,20 +152,43 @@ targets = [
139152
]
140153

141154
[tool.pytest.ini_options]
142-
addopts = ["-vvv", "--junitxml=junit.xml"]
155+
addopts = [
156+
"-vvv",
157+
"--junitxml=junit.xml",
158+
]
143159
testpaths = "python_template_jupyter/tests"
144160

145161
[tool.ruff]
146162
line-length = 150
147163

148164
[tool.ruff.lint]
149-
extend-select = ["I"]
165+
extend-select = [
166+
"I",
167+
]
150168

151169
[tool.ruff.lint.isort]
152170
combine-as-imports = true
153171
default-section = "third-party"
154-
known-first-party = ["python_template_jupyter"]
155-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
172+
known-first-party = [
173+
"python_template_jupyter",
174+
]
175+
section-order = [
176+
"future",
177+
"standard-library",
178+
"third-party",
179+
"first-party",
180+
"local-folder",
181+
]
156182

157183
[tool.ruff.lint.per-file-ignores]
158-
"__init__.py" = ["F401", "F403"]
184+
"__init__.py" = [
185+
"F401",
186+
"F403",
187+
]
188+
189+
[tool.yardang]
190+
title = "python template jupyter"
191+
root = "README.md"
192+
pages = []
193+
use-autoapi = true
194+

0 commit comments

Comments
 (0)