Skip to content

Commit f1a7595

Browse files
jorenhamKotlinIsland
authored andcommitted
chmod +x pw
1 parent 8f3c782 commit f1a7595

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

misc/install.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@
55
def main(args: argparse.Namespace):
66
venv_args = ["uv", "venv", "--python", args.python, f".venv{args.python}"]
77
check_call(venv_args)
8-
install_args = ["uv", "pip", "install", "-r", "test-requirements.txt", "-e", ".", "--python", f".venv{args.python}"]
8+
install_args = [
9+
"uv",
10+
"pip",
11+
"install",
12+
"-r",
13+
"test-requirements.txt",
14+
"-e",
15+
".",
16+
"--python",
17+
f".venv{args.python}",
18+
]
919
check_call(install_args)
1020

1121

pw

100644100755
File mode changed.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ skip-magic-trailing-comma = true
4242
force-exclude = '''
4343
^/mypy/typeshed|
4444
^/mypyc/test-data|
45-
^/test-data
45+
^/test-data|
46+
^/pw$
4647
'''
4748

4849
[tool.ruff]

0 commit comments

Comments
 (0)