File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ entr_warn:
1212 @echo " ----------------------------------------------------------"
1313
1414test :
15- poetry run py.test $(test )
15+ uv run py.test $(test )
1616
1717start :
18- $(MAKE ) test ; poetry run ptw .
18+ $(MAKE ) test ; uv run ptw .
1919
2020watch_test :
2121 if command -v entr > /dev/null; then ${PY_FILES} | entr -c $( MAKE) test ; else $( MAKE) test entr_warn; fi
@@ -30,7 +30,7 @@ design_docs:
3030 $(MAKE ) -C docs design
3131
3232ruff_format :
33- poetry run ruff format .
33+ uv run ruff format .
3434
3535ruff :
3636 ruff check .
@@ -39,7 +39,7 @@ watch_ruff:
3939 if command -v entr > /dev/null; then ${PY_FILES} | entr -c $( MAKE) ruff; else $( MAKE) ruff entr_warn; fi
4040
4141mypy :
42- poetry run mypy ` ${PY_FILES} `
42+ uv run mypy ` ${PY_FILES} `
4343
4444watch_mypy :
4545 if command -v entr > /dev/null; then ${PY_FILES} | entr -c $( MAKE) mypy; else $( MAKE) mypy entr_warn; fi
@@ -48,7 +48,7 @@ format_markdown:
4848 prettier --parser=markdown -w * .md docs/* .md docs/** /* .md CHANGES
4949
5050monkeytype_create :
51- poetry run monkeytype run ` poetry run which py.test`
51+ uv run monkeytype run ` uv run which py.test`
5252
5353monkeytype_apply :
54- poetry run monkeytype list-modules | xargs -n1 -I{} sh -c ' poetry run monkeytype apply {}'
54+ uv run monkeytype list-modules | xargs -n1 -I{} sh -c ' uv run monkeytype apply {}'
Original file line number Diff line number Diff line change 182182 $(MAKE ) -j watch serve
183183
184184start :
185- poetry run sphinx-autobuild " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) --port ${HTTP_PORT} $(O )
185+ uv run sphinx-autobuild " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) --port ${HTTP_PORT} $(O )
186186
187187design :
188188 # This adds additional watch directories (for _static file changes) and disable incremental builds
189- poetry run sphinx-autobuild " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) --port ${HTTP_PORT} --watch " ." -a $(O )
189+ uv run sphinx-autobuild " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) --port ${HTTP_PORT} --watch " ." -a $(O )
You can’t perform that action at this time.
0 commit comments