Skip to content

Commit

Permalink
Re-sync with internal repository
Browse files Browse the repository at this point in the history
  • Loading branch information
facebook-github-bot committed Jul 27, 2021
1 parent b43dfe5 commit 0263ca7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .circleci/test/test_sort_yaml.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env python3

"""
To compare new version with previous:
./regenerate.sh
meld <(git show HEAD:./config.yml | ./sort-yaml.py) <(cat config.yml | ./sort-yaml.py)
"""


import sys
import yaml

sys.stdout.write(yaml.dump(yaml.load(sys.stdin, Loader=yaml.FullLoader), sort_keys=True))
17 changes: 17 additions & 0 deletions .circleci/unittest/linux/scripts/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# a comment for these trying times
channels:
- conda-forge
- defaults
dependencies:
- flake8
- numpy >= 1.11
- pytest
- pytest-cov
- codecov
- librosa>=0.8.0
- llvmlite==0.31 # See https://github.com/pytorch/audio/pull/766
- pip
- pip:
- kaldi-io
- scipy
- parameterized

0 comments on commit 0263ca7

Please sign in to comment.