OpenSTBench 0.3.0__tar.gz → 0.3.1__tar.gz

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.
Files changed (25) hide show
  1. {openstbench-0.3.0 → openstbench-0.3.1}/PKG-INFO +4 -4
  2. {openstbench-0.3.0 → openstbench-0.3.1}/pyproject.toml +4 -4
  3. {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/PKG-INFO +4 -4
  4. {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/requires.txt +2 -2
  5. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/__init__.py +1 -1
  6. {openstbench-0.3.0 → openstbench-0.3.1}/README.md +0 -0
  7. {openstbench-0.3.0 → openstbench-0.3.1}/setup.cfg +0 -0
  8. {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/SOURCES.txt +0 -0
  9. {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/dependency_links.txt +0 -0
  10. {openstbench-0.3.0 → openstbench-0.3.1}/src/OpenSTBench.egg-info/top_level.txt +0 -0
  11. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/_model_loading.py +0 -0
  12. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/dataset.py +0 -0
  13. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/emotion_evaluator.py +0 -0
  14. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/__init__.py +0 -0
  15. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/agent.py +0 -0
  16. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/basics.py +0 -0
  17. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/cli.py +0 -0
  18. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/instance.py +0 -0
  19. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/metrics.py +0 -0
  20. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/latency/utils.py +0 -0
  21. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/paralinguistic_evaluator.py +0 -0
  22. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/speaker_similarity_evaluator.py +0 -0
  23. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/speech_quality_evaluator.py +0 -0
  24. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/temporal_consistency_evaluator.py +0 -0
  25. {openstbench-0.3.0 → openstbench-0.3.1}/src/openstbench/translation_evaluator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: OpenSTBench
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Open speech and translation benchmarking toolkit supporting MT, ASR, TTS, SimulST, VC, and paralinguistics with optimized CJK language support
5
5
  Author-email: Yanjie An <691476922@qq.com>
6
6
  License: MIT
@@ -14,10 +14,10 @@ Classifier: Intended Audience :: Science/Research
14
14
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
15
15
  Classifier: License :: OSI Approved :: MIT License
16
16
  Classifier: Programming Language :: Python :: 3
17
- Requires-Python: >=3.8
17
+ Requires-Python: <3.11,>=3.9
18
18
  Description-Content-Type: text/markdown
19
- Requires-Dist: torch>=1.9.0
20
- Requires-Dist: torchaudio>=0.9.0
19
+ Requires-Dist: torch<2.7,>=2.6
20
+ Requires-Dist: torchaudio<2.7,>=2.6
21
21
  Requires-Dist: numpy
22
22
  Requires-Dist: sacrebleu>=2.0.0
23
23
  Requires-Dist: pandas
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "OpenSTBench"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "Open speech and translation benchmarking toolkit supporting MT, ASR, TTS, SimulST, VC, and paralinguistics with optimized CJK language support"
9
9
  readme = {file = "README.md", content-type = "text/markdown"}
10
- requires-python = ">=3.8"
10
+ requires-python = ">=3.9,<3.11"
11
11
  license = {text = "MIT"}
12
12
  authors = [
13
13
  {name = "Yanjie An", email = "691476922@qq.com"}
@@ -29,8 +29,8 @@ classifiers = [
29
29
  ]
30
30
 
31
31
  dependencies = [
32
- "torch>=1.9.0",
33
- "torchaudio>=0.9.0",
32
+ "torch>=2.6,<2.7",
33
+ "torchaudio>=2.6,<2.7",
34
34
  "numpy",
35
35
  "sacrebleu>=2.0.0",
36
36
  "pandas",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: OpenSTBench
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Open speech and translation benchmarking toolkit supporting MT, ASR, TTS, SimulST, VC, and paralinguistics with optimized CJK language support
5
5
  Author-email: Yanjie An <691476922@qq.com>
6
6
  License: MIT
@@ -14,10 +14,10 @@ Classifier: Intended Audience :: Science/Research
14
14
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
15
15
  Classifier: License :: OSI Approved :: MIT License
16
16
  Classifier: Programming Language :: Python :: 3
17
- Requires-Python: >=3.8
17
+ Requires-Python: <3.11,>=3.9
18
18
  Description-Content-Type: text/markdown
19
- Requires-Dist: torch>=1.9.0
20
- Requires-Dist: torchaudio>=0.9.0
19
+ Requires-Dist: torch<2.7,>=2.6
20
+ Requires-Dist: torchaudio<2.7,>=2.6
21
21
  Requires-Dist: numpy
22
22
  Requires-Dist: sacrebleu>=2.0.0
23
23
  Requires-Dist: pandas
@@ -1,5 +1,5 @@
1
- torch>=1.9.0
2
- torchaudio>=0.9.0
1
+ torch<2.7,>=2.6
2
+ torchaudio<2.7,>=2.6
3
3
  numpy
4
4
  sacrebleu>=2.0.0
5
5
  pandas
@@ -9,7 +9,7 @@ actually accessed.
9
9
  from importlib import import_module
10
10
  from typing import Dict, Tuple
11
11
 
12
- __version__ = "0.3.0"
12
+ __version__ = "0.3.1"
13
13
 
14
14
  __all__ = [
15
15
  "TranslationEvaluator",
File without changes
File without changes