We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f46296f commit fda44bdCopy full SHA for fda44bd
tests/_utils/test_project/pyproject.toml
@@ -8,7 +8,7 @@ dependencies = [
8
]
9
10
[build-system]
11
-requires = ["hatchling", "hatch-frozen @ file:///home/jairamir/dev/hatch-frozen"] # {{{hatch_frozen_cwd__}}}
+requires = ["hatchling", "hatch-frozen @ <<<hatch_frozen_cwd>>>"]
12
build-backend = "hatchling.build"
13
14
[tool.hatch.build.targets.wheel.hooks.frozen]
tests/conftest.py
@@ -27,7 +27,7 @@ def test_project():
27
tmp_project = Path(tmpdir) / "hatch-frozen-test-project"
28
shutil.copytree(source_dir, tmp_project)
29
30
- pyproject_toml = source_dir / "pyproject.toml"
+ pyproject_toml = tmp_project / "pyproject.toml"
31
with open(pyproject_toml, "r") as f:
32
content = f.read()
33
new_content = content.replace(
0 commit comments