Skip to content

Commit

Permalink
chore: fix deps and vscode configs
Browse files Browse the repository at this point in the history
  • Loading branch information
nglehuy committed May 4, 2024
1 parent be3d4ed commit 9a59241
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 19 deletions.
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"ms-python.isort",
"ms-python.black-formatter",
"ms-python.pylint",
"ms-python.vscode-pylance",
"ms-python.python"
]
}
20 changes: 19 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,23 @@
"autoDocstring.docstringFormat": "numpy",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
}
},
"pylint.path": [
"${interpreter}",
"-m",
"pylint"
],
"pylint.args": [
"--rcfile=${workspaceFolder}/.pylintrc"
],
"black-formatter.path": [
"${interpreter}",
"-m",
"black"
],
"isort.path": [
"${interpreter}",
"-m",
"isort"
]
}
36 changes: 18 additions & 18 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
SoundFile==0.12.1
nltk==3.8.1
sentencepiece==0.1.99
tqdm==4.66.3
librosa==0.10.1
PyYAML==6.0.1
sounddevice==0.4.6
jinja2==3.1.3
fire==0.5.0
jiwer==3.0.3
chardet==5.1.0
charset-normalizer==2.1.1
SoundFile~=0.12.1
nltk~=3.8.1
sentencepiece~=0.1.99
tqdm~=4.66.3
librosa~=0.10.1
PyYAML~=6.0.1
sounddevice~=0.4.6
jinja2~=3.1.3
fire~=0.5.0
jiwer~=3.0.3
chardet~=5.1.0
charset-normalizer~=2.1.1

# extra=dev
pytest==7.4.1
black==24.3.0
pylint==2.17.5
matplotlib==3.7.2
pydot==1.4.2
graphviz==0.20.1
pytest~=7.4.1
black~=24.3.0
pylint~=3.1.0
matplotlib~=3.7.2
pydot~=1.4.2
graphviz~=0.20.1

# extra=tf2-12
tensorflow~=2.12.0
Expand Down

0 comments on commit 9a59241

Please sign in to comment.