-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
79 lines (61 loc) · 2.47 KB
/
Makefile
File metadata and controls
79 lines (61 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright (c) 2026 Takenori Yoshimura
# Released under the MIT License.
PROJECT := lfeats
MODULE :=
PYTHON_VERSION := 3.11
TORCH_VERSION := 2.6.0
TORCHAUDIO_VERSION := 2.6.0
PLATFORM := cu124
venv:
test -d .venv || python$(PYTHON_VERSION) -m venv .venv
. .venv/bin/activate && python -m pip install --upgrade pip
. .venv/bin/activate && python -m pip install --upgrade wheel
. .venv/bin/activate && python -m pip install torch==$(TORCH_VERSION)+$(PLATFORM) torchaudio==$(TORCHAUDIO_VERSION)+$(PLATFORM) \
--index-url https://download.pytorch.org/whl/$(PLATFORM)
. .venv/bin/activate && python -m pip install -e .[dev]
dist:
. .venv/bin/activate && python -m build
. .venv/bin/activate && python -m twine check dist/*
dist-clean:
rm -rf dist
doc:
. .venv/bin/activate && cd docs && make html
doc-clean:
@if [ -f .venv/bin/activate ]; then \
. .venv/bin/activate && cd docs && make clean; \
fi
check: tool
. .venv/bin/activate && python -m ruff check $(PROJECT) tests
. .venv/bin/activate && python -m ruff format --check $(PROJECT) tests docs/source
. .venv/bin/activate && python -m pyright $(PROJECT) tests
. .venv/bin/activate && python -m mdformat --check *.md
./tools/taplo/taplo fmt --check *.toml
./tools/yamlfmt/yamlfmt --lint *.yml .github/workflows/*.yml
format: tool
. .venv/bin/activate && python -m ruff check --fix $(PROJECT) tests
. .venv/bin/activate && python -m ruff format $(PROJECT) tests docs/source
. .venv/bin/activate && python -m mdformat *.md
./tools/taplo/taplo fmt *.toml
./tools/yamlfmt/yamlfmt *.yml .github/workflows/*.yml
test-all: test-example test
test: tool
mkdir -p tests/outputs
[ -n "$(MODULE)" ] && module=tests/test_$(MODULE).py || module=; \
. .venv/bin/activate && python -m pytest $$module
test-example: tool
. .venv/bin/activate && python -m pytest --doctest-modules --no-cov --ignore=$(PROJECT)/third_party $(PROJECT)
test-clean:
rm -rf tests/__pycache__ tests/outputs
tool:
cd tools && make
tool-clean:
cd tools && make clean
update: tool
. .venv/bin/activate && python -m pip install --upgrade pip
@./tools/taplo/taplo get -f pyproject.toml project.optional-dependencies.dev | while read -r package; do \
. .venv/bin/activate && python -m pip install --upgrade "$$package"; \
done
clean: dist-clean doc-clean test-clean tool-clean
rm -rf .venv
find . -name "__pycache__" -type d -print0 | xargs -0 rm -rf
.PHONY: venv dist dist-clean doc doc-clean check format test test-clean tool tool-clean update clean