Spaces:
Running
on
T4
Running
on
T4
Update mypy.ini
Browse files- mypy.ini +1 -1
- pre-requirements.txt +1 -1
- requirements.txt +2 -2
- setup.cfg +9 -0
mypy.ini
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
[mypy]
|
| 2 |
|
| 3 |
-
[mypy-treetable,torchaudio.*,soundfile,einops.*,av.*,tqdm.*,num2words.*,spacy,xformers.*,scipy,huggingface_hub]
|
| 4 |
ignore_missing_imports = True
|
|
|
|
| 1 |
[mypy]
|
| 2 |
|
| 3 |
+
[mypy-treetable,torchaudio.*,soundfile,einops.*,av.*,tqdm.*,num2words.*,spacy,xformers.*,scipy,huggingface_hub,transformers,dac.*]
|
| 4 |
ignore_missing_imports = True
|
pre-requirements.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
pip>=23.2
|
|
|
|
| 1 |
+
pip>=23.2.1
|
requirements.txt
CHANGED
|
@@ -15,8 +15,8 @@ soundfile
|
|
| 15 |
huggingface_hub
|
| 16 |
tqdm
|
| 17 |
transformers>=4.31.0
|
| 18 |
-
xformers
|
| 19 |
demucs
|
| 20 |
librosa
|
| 21 |
-
gradio
|
| 22 |
pillow
|
|
|
|
| 15 |
huggingface_hub
|
| 16 |
tqdm
|
| 17 |
transformers>=4.31.0
|
| 18 |
+
xformers>=0.0.20
|
| 19 |
demucs
|
| 20 |
librosa
|
| 21 |
+
gradio==3.38.00
|
| 22 |
pillow
|
setup.cfg
CHANGED
|
@@ -3,3 +3,12 @@ max-line-length = 120
|
|
| 3 |
|
| 4 |
[flake8]
|
| 5 |
max-line-length = 120
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
[flake8]
|
| 5 |
max-line-length = 120
|
| 6 |
+
|
| 7 |
+
[coverage:report]
|
| 8 |
+
include = audiocraft/*
|
| 9 |
+
omit =
|
| 10 |
+
audiocraft/environment.py
|
| 11 |
+
audiocraft/solvers/*
|
| 12 |
+
audiocraft/utils/*
|
| 13 |
+
audiocraft/*/loaders.py
|
| 14 |
+
audiocraft/*/builders.py
|