Anchor-annotator 0.8.1__py3-none-any.whl → 0.8.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anchor/_version.py +9 -4
- anchor/widgets.py +5 -5
- {Anchor_annotator-0.8.1.dist-info → anchor_annotator-0.8.2.dist-info}/METADATA +3 -2
- {Anchor_annotator-0.8.1.dist-info → anchor_annotator-0.8.2.dist-info}/RECORD +7 -7
- {Anchor_annotator-0.8.1.dist-info → anchor_annotator-0.8.2.dist-info}/WHEEL +1 -1
- {Anchor_annotator-0.8.1.dist-info → anchor_annotator-0.8.2.dist-info/licenses}/LICENSE +0 -0
- {Anchor_annotator-0.8.1.dist-info → anchor_annotator-0.8.2.dist-info}/top_level.txt +0 -0
anchor/_version.py
CHANGED
@@ -1,8 +1,13 @@
|
|
1
|
-
# file generated by
|
1
|
+
# file generated by setuptools-scm
|
2
2
|
# don't change, don't track in version control
|
3
|
+
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
5
|
+
|
3
6
|
TYPE_CHECKING = False
|
4
7
|
if TYPE_CHECKING:
|
5
|
-
from typing import Tuple
|
8
|
+
from typing import Tuple
|
9
|
+
from typing import Union
|
10
|
+
|
6
11
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
7
12
|
else:
|
8
13
|
VERSION_TUPLE = object
|
@@ -12,5 +17,5 @@ __version__: str
|
|
12
17
|
__version_tuple__: VERSION_TUPLE
|
13
18
|
version_tuple: VERSION_TUPLE
|
14
19
|
|
15
|
-
__version__ = version = '0.8.
|
16
|
-
__version_tuple__ = version_tuple = (0, 8,
|
20
|
+
__version__ = version = '0.8.2'
|
21
|
+
__version_tuple__ = version_tuple = (0, 8, 2)
|
anchor/widgets.py
CHANGED
@@ -679,7 +679,7 @@ class UtteranceListWidget(QtWidgets.QWidget): # pragma: no cover
|
|
679
679
|
|
680
680
|
layout.addWidget(self.table_widget)
|
681
681
|
self.pagination_toolbar = PaginationWidget()
|
682
|
-
self.pagination_toolbar.pageRequested.connect(self.table_widget.scrollToTop
|
682
|
+
self.pagination_toolbar.pageRequested.connect(self.table_widget.scrollToTop)
|
683
683
|
layout.addWidget(self.pagination_toolbar)
|
684
684
|
self.setLayout(layout)
|
685
685
|
self.dictionary = None
|
@@ -2858,7 +2858,7 @@ class DiarizationWidget(QtWidgets.QWidget):
|
|
2858
2858
|
self.current_page = 0
|
2859
2859
|
self.num_pages = 0
|
2860
2860
|
self.pagination_toolbar = PaginationWidget()
|
2861
|
-
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop
|
2861
|
+
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop)
|
2862
2862
|
layout.addWidget(self.pagination_toolbar)
|
2863
2863
|
self.setLayout(layout)
|
2864
2864
|
self.table.referenceUtteranceSelected.connect(self.update_reference_utterance)
|
@@ -3049,7 +3049,7 @@ class OovWidget(QtWidgets.QWidget):
|
|
3049
3049
|
dict_layout.addWidget(self.toolbar)
|
3050
3050
|
dict_layout.addWidget(self.table)
|
3051
3051
|
self.pagination_toolbar = PaginationWidget()
|
3052
|
-
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop
|
3052
|
+
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop)
|
3053
3053
|
dict_layout.addWidget(self.pagination_toolbar)
|
3054
3054
|
|
3055
3055
|
self.setLayout(dict_layout)
|
@@ -3109,7 +3109,7 @@ class DictionaryWidget(QtWidgets.QWidget):
|
|
3109
3109
|
dict_layout.addWidget(self.toolbar)
|
3110
3110
|
dict_layout.addWidget(self.table)
|
3111
3111
|
self.pagination_toolbar = PaginationWidget()
|
3112
|
-
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop
|
3112
|
+
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop)
|
3113
3113
|
dict_layout.addWidget(self.pagination_toolbar)
|
3114
3114
|
|
3115
3115
|
self.setLayout(dict_layout)
|
@@ -3254,7 +3254,7 @@ class SpeakerWidget(QtWidgets.QWidget):
|
|
3254
3254
|
self.current_page = 0
|
3255
3255
|
self.num_pages = 0
|
3256
3256
|
self.pagination_toolbar = PaginationWidget()
|
3257
|
-
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop
|
3257
|
+
self.pagination_toolbar.pageRequested.connect(self.table.scrollToTop)
|
3258
3258
|
speaker_layout.addWidget(self.pagination_toolbar)
|
3259
3259
|
self.tool_bar_wrapper = QtWidgets.QVBoxLayout()
|
3260
3260
|
self.tool_bar = QtWidgets.QToolBar()
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: Anchor_annotator
|
3
|
-
Version: 0.8.
|
3
|
+
Version: 0.8.2
|
4
4
|
Summary: Anchor annotator is a program for inspecting corpora for the Montreal Forced Aligner and correcting transcriptions and pronunciations.
|
5
5
|
Home-page: https://github.com/MontrealCorpusTools/Anchor-annotator
|
6
6
|
Author: Montreal Corpus Tools
|
@@ -24,6 +24,7 @@ License-File: LICENSE
|
|
24
24
|
Requires-Dist: montreal-forced-aligner
|
25
25
|
Requires-Dist: pyqtgraph
|
26
26
|
Requires-Dist: pyside6
|
27
|
+
Dynamic: license-file
|
27
28
|
|
28
29
|
# Anchor annotator
|
29
30
|
Anchor annotator is a program for inspecting corpora for the [Montreal Forced Aligner](https://montreal-forced-aligner.readthedocs.io/en/latest/) and correcting transcriptions and pronunciations
|
@@ -1,6 +1,6 @@
|
|
1
1
|
anchor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
anchor/__main__.py,sha256=5ufG8lcx2x1am-04xI991AG7saJd24dxPw5JzjmB878,45
|
3
|
-
anchor/_version.py,sha256=
|
3
|
+
anchor/_version.py,sha256=4Kt_Ae0emj4wRVlpu-xPGvdBayNUDtQuMKqWoOpvoGY,511
|
4
4
|
anchor/command_line.py,sha256=EucG805HyWk_zkMO9RXv9Yj0I0JVdDLZb1_DX2_ISjM,503
|
5
5
|
anchor/db.py,sha256=LlZzAy4bjmJIu0v4ev5Qjg_Fh2n9sMsKI2nAY1pwd0A,5057
|
6
6
|
anchor/main.py,sha256=3CN6wlIzdWjGxsYRSIIuqB2jQZPUdLX9PlQSRMSQ5aI,134355
|
@@ -13,10 +13,10 @@ anchor/ui_error_dialog.py,sha256=HKbjGT_jtdb9jfn9THQMbl1fmcdWyjYDazM4hCwZ5Yo,393
|
|
13
13
|
anchor/ui_main_window.py,sha256=E1j35ICX4Q56_KlhETk3325CrjP5oCAubxrWTKRx9ks,40198
|
14
14
|
anchor/ui_preferences.py,sha256=_1U67al_FoTjVizcK1He4JKBEqfmh3KxUo0UEB7kt5Q,43822
|
15
15
|
anchor/undo.py,sha256=fDy8PA2Rckd9_dsa_lM_ohvQJS-l-VdQwB_P0i-Kvbw,33098
|
16
|
-
anchor/widgets.py,sha256=
|
16
|
+
anchor/widgets.py,sha256=Lci1Jq0Gan6zuvB4myrcPe-X9IZ3UXqLrZe3o_sgOIs,159469
|
17
17
|
anchor/workers.py,sha256=T81tr2wgQh5oLOXZteGfccgvSwXJrJbk3SSmTLHdnmA,191386
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
anchor_annotator-0.8.2.dist-info/licenses/LICENSE,sha256=C0oIsblENEgWQ7XMNdYoXyXsIA5wa3YF0I9lK3H7A1s,1076
|
19
|
+
anchor_annotator-0.8.2.dist-info/METADATA,sha256=INOKDt1JL0O3IXZYclm01rg0YtZrZklLO19sDGFR2pQ,1522
|
20
|
+
anchor_annotator-0.8.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
21
|
+
anchor_annotator-0.8.2.dist-info/top_level.txt,sha256=wX6ZKxImGRZKFQjs3f6XYw_TfbAp6Xs3SmbLfLbFAJ0,7
|
22
|
+
anchor_annotator-0.8.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|