Skip to content

Commit 0592a58

Browse files
authoredSep 13, 2021
Merge pull request #803 from coqui-ai/dev
v0.3.0
2 parents dc2ace3 + f563415 commit 0592a58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+24537
-1031
lines changed
 

‎.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ old_configs/*
142142
model_importers/*
143143
model_profiling/*
144144
docs/source/TODO/*
145-
docs/source/models/*
146145
.noseids
147146
.dccache
148147
log.txt

‎Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DEFAULT_GOAL := help
2-
.PHONY: test system-deps dev-deps deps style lint install help
2+
.PHONY: test system-deps dev-deps deps style lint install help docs
33

44
help:
55
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@@ -45,3 +45,6 @@ deps: ## install 🐸 requirements.
4545

4646
install: ## install 🐸 TTS for development.
4747
pip install -e .[all]
48+
49+
docs: ## build the docs
50+
$(MAKE) -C docs clean && $(MAKE) -C docs html

0 commit comments

Comments
 (0)