We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ac85b commit 8adba27Copy full SHA for 8adba27
pyproject.toml
@@ -164,13 +164,15 @@ installer = "uv"
164
#--------------- Build and check your package ---------------#
165
166
# This table installs the tools you need to test and build your package
167
+# `builder = true` needed since hatch 1.16: https://github.com/pypa/hatch/issues/2113
168
[tool.hatch.envs.build]
169
description = """Test the installation the package."""
170
dependencies = [
171
"pip",
172
"twine",
173
]
174
detached = true
175
+builder = true
176
177
# This table installs created the command hatch run install:check which will build and check your package.
178
[tool.hatch.envs.build.scripts]
0 commit comments