-
Notifications
You must be signed in to change notification settings - Fork 670
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify the requirements to minimum runtime dependencies (#2313)
Summary: Pull Request resolved: #2313 Reviewed By: carolineechen, nateanl Differential Revision: D37799552 Pulled By: mthrok fbshipit-source-id: 12e27fccb7098f3142e9ca0b748c71325cd324ee
- Loading branch information
1 parent
9930314
commit 632ea67
Showing
2 changed files
with
5 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ deep-phonemizer | |
boto3 | ||
pandas | ||
librosa | ||
numpy<=1.20 | ||
sentencepiece | ||
nbsphinx | ||
pandoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,8 @@ | ||
torch>=1.4.0 | ||
# Minimum runtime dependencies | ||
torch | ||
|
||
# Required for Windows because it's the only available backend | ||
SoundFile; sys_platform == 'win32' | ||
|
||
# Optional for torchaudio.kaldi_io | ||
numpy | ||
# Optional runtime dependencies | ||
kaldi_io | ||
SoundFile | ||
|
||
# Required for tests only: | ||
|
||
# Style-checking for PEP8 | ||
flake8 | ||
|
||
# Used for comparison of outputs in tests | ||
librosa>=0.4.3 | ||
scipy | ||
|
||
# Unit tests with pytest | ||
pytest | ||
# For build and test-time dependencies please refer to CONTRIBUTING.md |