File tree Expand file tree Collapse file tree 3 files changed +21
-29
lines changed
Expand file tree Collapse file tree 3 files changed +21
-29
lines changed Original file line number Diff line number Diff line change 1- #!/usr/bin/env python3
2-
1+ #!/usr/bin/env -S uv run --script
2+ # /// script
3+ # requires-python = ">=3.12"
4+ # dependencies = [
5+ # "jinja2",
6+ # "jsonschema",
7+ # "pyYAML",
8+ # ]
9+ # ///
310
411import pathlib
512import sys
613
714prefix = pathlib .Path (__file__ ).parent .parent .resolve ()
8- external = prefix / 'external'
9- sys .path = [prefix .as_posix (), external .as_posix ()] + sys .path
15+ sys .path = [prefix .as_posix ()] + sys .path
1016
1117from stackinator .main import main
1218
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python3
1+ #!/usr/bin/env -S uv run --script
2+ # /// script
3+ # requires-python = ">=3.12"
4+ # dependencies = [
5+ # "jinja2",
6+ # "jsonschema",
7+ # "pytest",
8+ # "pyYAML",
9+ # ]
10+ # ///
211
312import pathlib
413import sys
514
615prefix = pathlib .Path (__file__ ).parent .resolve ()
7- external = prefix / "external"
8- sys .path = [prefix .as_posix (), external .as_posix ()] + sys .path
16+ sys .path = [prefix .as_posix ()] + sys .path
917
1018import pytest # noqa: E402
1119
You can’t perform that action at this time.
0 commit comments