transcribe-cpp 0.0.4__tar.gz → 0.0.5__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 (29) hide show
  1. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/PKG-INFO +3 -3
  2. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/pyproject.toml +3 -3
  3. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/src/transcribe_cpp/__init__.py +1 -1
  4. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/.gitignore +0 -0
  5. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/LICENSE +0 -0
  6. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/README.md +0 -0
  7. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/_generate/README.md +0 -0
  8. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/_generate/check_version_sync.py +0 -0
  9. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/_generate/generate.py +0 -0
  10. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/examples/stream_wav.py +0 -0
  11. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/examples/transcribe_wav.py +0 -0
  12. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/src/transcribe_cpp/_abi.py +0 -0
  13. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/src/transcribe_cpp/_generated.py +0 -0
  14. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/src/transcribe_cpp/_library.py +0 -0
  15. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/src/transcribe_cpp/errors.py +0 -0
  16. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/src/transcribe_cpp/py.typed +0 -0
  17. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/conftest.py +0 -0
  18. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_abi.py +0 -0
  19. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_backends.py +0 -0
  20. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_device_select.py +0 -0
  21. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_errors.py +0 -0
  22. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_example.py +0 -0
  23. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_family_ext.py +0 -0
  24. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_lifetime.py +0 -0
  25. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_pcm.py +0 -0
  26. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_provider_discovery.py +0 -0
  27. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_streaming.py +0 -0
  28. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/tests/test_transcribe.py +0 -0
  29. {transcribe_cpp-0.0.4 → transcribe_cpp-0.0.5}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: transcribe-cpp
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: Python bindings for transcribe.cpp
5
5
  Project-URL: Homepage, https://github.com/handy-computer/transcribe.cpp
6
6
  Project-URL: Repository, https://github.com/handy-computer/transcribe.cpp
@@ -21,9 +21,9 @@ Classifier: Programming Language :: Python :: 3.13
21
21
  Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
22
22
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
23
  Requires-Python: >=3.9
24
- Requires-Dist: transcribe-cpp-native==0.0.4.*
24
+ Requires-Dist: transcribe-cpp-native==0.0.5.*
25
25
  Provides-Extra: cu12
26
- Requires-Dist: transcribe-cpp-native-cu12==0.0.4.*; extra == 'cu12'
26
+ Requires-Dist: transcribe-cpp-native-cu12==0.0.5.*; extra == 'cu12'
27
27
  Provides-Extra: test
28
28
  Requires-Dist: numpy; extra == 'test'
29
29
  Requires-Dist: pytest>=7; extra == 'test'
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "transcribe-cpp"
7
- version = "0.0.4"
7
+ version = "0.0.5"
8
8
  description = "Python bindings for transcribe.cpp"
9
9
  readme = "README.md"
10
10
  # 3.8 is EOL (2024-10); 3.9 is the floor. The binding is ctypes-only, so there
@@ -34,13 +34,13 @@ classifiers = [
34
34
  # packaging fix still resolves); the import-time version/header-hash check in
35
35
  # _library.py is the runtime backstop. check_version_sync.py gates this pin
36
36
  # against include/transcribe.h.
37
- dependencies = ["transcribe-cpp-native==0.0.4.*"]
37
+ dependencies = ["transcribe-cpp-native==0.0.5.*"]
38
38
 
39
39
  [project.optional-dependencies]
40
40
  # Opt-in accelerator providers — ADDITIVE: they install alongside the default
41
41
  # provider and the best one wins at runtime. Same base-version pin contract
42
42
  # as the hard dependency (gated by check_version_sync.py).
43
- cu12 = ["transcribe-cpp-native-cu12==0.0.4.*"]
43
+ cu12 = ["transcribe-cpp-native-cu12==0.0.5.*"]
44
44
  # Test-only deps. Run with: uv run --extra test pytest (from bindings/python).
45
45
  # numpy is here so the numpy PCM-input tests run in every lane instead of
46
46
  # silently skipping wherever numpy happens to be absent.
@@ -46,7 +46,7 @@ from .errors import (
46
46
  raise_for_status,
47
47
  )
48
48
 
49
- __version__ = "0.0.4"
49
+ __version__ = "0.0.5"
50
50
 
51
51
  # String-enum types, exported so callers (and type checkers) can name them.
52
52
  Backend = Literal["auto", "cpu", "metal", "vulkan", "cpu_accel", "cuda"]
File without changes
File without changes
File without changes