"git@developer.sourcefind.cn:OpenDAS/fairseq.git" did not exist on "90d6eac2b313968f4210a229efd3a88f243b3438"
Make torchaudio work on Python 2. (#209)
- Apply __future__ imports uniformly (future division is the biggy, but absolute
imports mattered too)
- Hotfix use of tempfile.TemporaryDirectory using a BC library (DO NOT
add this library as a dependency to torchaudio; it's only for testing)
- Replace math.gcd with fractions.gcd
- Fix a weird pytest collection bug involving parametrized tests
- Turn on Python 2 and Python 3.7 in Travis.
Signed-off-by:
Edward Z. Yang <ezyang@fb.com>
Showing
| ... | @@ -14,4 +14,7 @@ librosa>=0.4.3 | ... | @@ -14,4 +14,7 @@ librosa>=0.4.3 |
| scipy | scipy | ||
| # Unit tests with pytest | # Unit tests with pytest | ||
| pytest | pytest | ||
| \ No newline at end of file | |||
| # Testing only Py3 compat | |||
| backports.tempfile |
Please register or sign in to comment