File tree Expand file tree Collapse file tree 4 files changed +26
-16
lines changed Expand file tree Collapse file tree 4 files changed +26
-16
lines changed Original file line number Diff line number Diff line change 4
4
5
5
# Required
6
6
version : 2
7
+ build :
8
+ os : " ubuntu-22.04"
9
+ tools :
10
+ python : " 3.10"
11
+ apt_packages :
12
+ - " libsndfile-dev"
7
13
8
14
# Build documentation in the docs/ directory with Sphinx
9
15
sphinx :
10
- configuration : docs/conf.py
11
-
12
- # Build documentation with MkDocs
13
- # mkdocs:
14
- # configuration: mkdocs.yml
15
-
16
- # Optionally build your docs in additional formats such as PDF
17
- formats :
18
- - pdf
16
+ configuration : " docs/conf.py"
19
17
20
18
# Optionally set the version of Python and requirements required to build your docs
21
19
python :
22
- version : 3.7
23
20
install :
24
- - requirements : docs/requirements.txt
25
- - method : pip
26
- path : .
21
+ - requirements : " docs/requirements.txt" # install this first to get numpy
22
+ - method : " pip"
23
+ path : " . "
Original file line number Diff line number Diff line change 1
- 1.16 .0
1
+ 1.17 .0
Original file line number Diff line number Diff line change 23
23
# -- Project information -----------------------------------------------------
24
24
25
25
project = "lhotse"
26
- copyright = "2020-2021 , Lhotse development team"
26
+ copyright = "2020-2023 , Lhotse development team"
27
27
author = "Lhotse development team"
28
28
29
29
# The full version, including alpha/beta/rc tags
30
30
31
- VERSION = open (Path ("." ).parent / "VERSION" ).read ().strip ()
31
+ VERSION = open (Path (__file__ ).parent . parent . absolute () / "VERSION" ).read ().strip ()
32
32
dev_marker = ""
33
33
if not os .environ .get ("LHOTSE_PREPARING_RELEASE" , False ):
34
34
dev_marker = ".dev"
Original file line number Diff line number Diff line change 7
7
from .stateless import StatelessSampler
8
8
from .utils import find_pessimistic_batches , report_padding_ratio_estimate
9
9
from .zip import ZipSampler
10
+
11
+ __all__ = [
12
+ "BucketingSampler" ,
13
+ "CutPairsSampler" ,
14
+ "DynamicCutSampler" ,
15
+ "DynamicBucketingSampler" ,
16
+ "RoundRobinSampler" ,
17
+ "SimpleCutSampler" ,
18
+ "StatelessSampler" ,
19
+ "ZipSampler" ,
20
+ "find_pessimistic_batches" ,
21
+ "report_padding_ratio_estimate" ,
22
+ ]
You can’t perform that action at this time.
0 commit comments