Skip to content

Commit 9a59241

Browse files
committed
chore: fix deps and vscode configs
1 parent be3d4ed commit 9a59241

File tree

3 files changed

+46
-19
lines changed

3 files changed

+46
-19
lines changed

.vscode/extensions.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"recommendations": [
3+
"ms-python.isort",
4+
"ms-python.black-formatter",
5+
"ms-python.pylint",
6+
"ms-python.vscode-pylance",
7+
"ms-python.python"
8+
]
9+
}

.vscode/settings.json

+19-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,23 @@
1515
"autoDocstring.docstringFormat": "numpy",
1616
"[python]": {
1717
"editor.defaultFormatter": "ms-python.black-formatter",
18-
}
18+
},
19+
"pylint.path": [
20+
"${interpreter}",
21+
"-m",
22+
"pylint"
23+
],
24+
"pylint.args": [
25+
"--rcfile=${workspaceFolder}/.pylintrc"
26+
],
27+
"black-formatter.path": [
28+
"${interpreter}",
29+
"-m",
30+
"black"
31+
],
32+
"isort.path": [
33+
"${interpreter}",
34+
"-m",
35+
"isort"
36+
]
1937
}

requirements.txt

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
SoundFile==0.12.1
2-
nltk==3.8.1
3-
sentencepiece==0.1.99
4-
tqdm==4.66.3
5-
librosa==0.10.1
6-
PyYAML==6.0.1
7-
sounddevice==0.4.6
8-
jinja2==3.1.3
9-
fire==0.5.0
10-
jiwer==3.0.3
11-
chardet==5.1.0
12-
charset-normalizer==2.1.1
1+
SoundFile~=0.12.1
2+
nltk~=3.8.1
3+
sentencepiece~=0.1.99
4+
tqdm~=4.66.3
5+
librosa~=0.10.1
6+
PyYAML~=6.0.1
7+
sounddevice~=0.4.6
8+
jinja2~=3.1.3
9+
fire~=0.5.0
10+
jiwer~=3.0.3
11+
chardet~=5.1.0
12+
charset-normalizer~=2.1.1
1313

1414
# extra=dev
15-
pytest==7.4.1
16-
black==24.3.0
17-
pylint==2.17.5
18-
matplotlib==3.7.2
19-
pydot==1.4.2
20-
graphviz==0.20.1
15+
pytest~=7.4.1
16+
black~=24.3.0
17+
pylint~=3.1.0
18+
matplotlib~=3.7.2
19+
pydot~=1.4.2
20+
graphviz~=0.20.1
2121

2222
# extra=tf2-12
2323
tensorflow~=2.12.0

0 commit comments

Comments
 (0)