mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
avoid installing pyaudio on every run
This commit is contained in:
parent
66809dd8a3
commit
85b28f13d2
1 changed files with 3 additions and 2 deletions
|
@ -70,11 +70,12 @@ BUILD_STEPS := .build/vernum .build/run-deps .build/dev-deps .build/js .build/ui
|
||||||
######################
|
######################
|
||||||
|
|
||||||
.PHONY: check
|
.PHONY: check
|
||||||
check: pyaudio $(BUILD_STEPS) .build/mypy .build/test .build/fmt .build/imports .build/lint .build/ts-fmt
|
check: .build/pyaudio $(BUILD_STEPS) .build/mypy .build/test .build/fmt .build/imports .build/lint .build/ts-fmt
|
||||||
|
|
||||||
# https://github.com/ankitects/anki/pull/611 - Automatically install pyaudio when running make check
|
# https://github.com/ankitects/anki/pull/611 - Automatically install pyaudio when running make check
|
||||||
pyaudio:
|
.build/pyaudio:
|
||||||
python -m pip install pyaudio
|
python -m pip install pyaudio
|
||||||
|
@touch $@
|
||||||
|
|
||||||
.PHONY: fix
|
.PHONY: fix
|
||||||
fix: $(BUILD_STEPS)
|
fix: $(BUILD_STEPS)
|
||||||
|
|
Loading…
Reference in a new issue