cartesia 1.3.0__tar.gz → 1.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 (34) hide show
  1. {cartesia-1.3.0 → cartesia-1.3.1}/PKG-INFO +3 -3
  2. cartesia-1.3.1/cartesia/version.py +1 -0
  3. {cartesia-1.3.0 → cartesia-1.3.1}/pyproject.toml +3 -3
  4. {cartesia-1.3.0 → cartesia-1.3.1}/uv.lock +3 -3
  5. cartesia-1.3.0/cartesia/version.py +0 -1
  6. {cartesia-1.3.0 → cartesia-1.3.1}/.github/workflows/ci.yaml +0 -0
  7. {cartesia-1.3.0 → cartesia-1.3.1}/.github/workflows/publish.yaml +0 -0
  8. {cartesia-1.3.0 → cartesia-1.3.1}/.gitignore +0 -0
  9. {cartesia-1.3.0 → cartesia-1.3.1}/LICENSE.md +0 -0
  10. {cartesia-1.3.0 → cartesia-1.3.1}/Makefile +0 -0
  11. {cartesia-1.3.0 → cartesia-1.3.1}/README.md +0 -0
  12. {cartesia-1.3.0 → cartesia-1.3.1}/bumpversion.py +0 -0
  13. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/__init__.py +0 -0
  14. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_async_sse.py +0 -0
  15. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_async_websocket.py +0 -0
  16. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_constants.py +0 -0
  17. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_logger.py +0 -0
  18. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_sse.py +0 -0
  19. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_types.py +0 -0
  20. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_websocket.py +0 -0
  21. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/async_client.py +0 -0
  22. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/async_tts.py +0 -0
  23. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/client.py +0 -0
  24. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/resource.py +0 -0
  25. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/tts.py +0 -0
  26. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/__init__.py +0 -0
  27. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/deprecated.py +0 -0
  28. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/retry.py +0 -0
  29. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/tts.py +0 -0
  30. {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/voices.py +0 -0
  31. {cartesia-1.3.0 → cartesia-1.3.1}/tests/__init__.py +0 -0
  32. {cartesia-1.3.0 → cartesia-1.3.1}/tests/resources/sample-speech-4s.wav +0 -0
  33. {cartesia-1.3.0 → cartesia-1.3.1}/tests/test_deprecated.py +0 -0
  34. {cartesia-1.3.0 → cartesia-1.3.1}/tests/test_tts.py +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cartesia
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: The official Python library for the Cartesia API.
5
5
  Requires-Python: >=3.9
6
6
  Requires-Dist: aiohttp>=3.10.10
7
- Requires-Dist: httpx>=0.27.2
7
+ Requires-Dist: httpx>=0.27.0
8
8
  Requires-Dist: iterators>=0.2.0
9
- Requires-Dist: requests>=2.32.3
9
+ Requires-Dist: requests>=2.31.0
10
10
  Requires-Dist: websockets>=10.4
11
11
  Description-Content-Type: text/markdown
12
12
 
@@ -0,0 +1 @@
1
+ __version__ = "1.3.1"
@@ -1,14 +1,14 @@
1
1
  [project]
2
2
  name = "cartesia"
3
- version = "1.3.0"
3
+ version = "1.3.1"
4
4
  description = "The official Python library for the Cartesia API."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9"
7
7
  dependencies = [
8
8
  "aiohttp>=3.10.10",
9
- "httpx>=0.27.2",
9
+ "httpx>=0.27.0",
10
10
  "iterators>=0.2.0",
11
- "requests>=2.32.3",
11
+ "requests>=2.31.0",
12
12
  "websockets>=10.4",
13
13
  ]
14
14
 
@@ -162,7 +162,7 @@ wheels = [
162
162
 
163
163
  [[package]]
164
164
  name = "cartesia"
165
- version = "1.3.0"
165
+ version = "1.3.1"
166
166
  source = { editable = "." }
167
167
  dependencies = [
168
168
  { name = "aiohttp" },
@@ -189,9 +189,9 @@ dev = [
189
189
  [package.metadata]
190
190
  requires-dist = [
191
191
  { name = "aiohttp", specifier = ">=3.10.10" },
192
- { name = "httpx", specifier = ">=0.27.2" },
192
+ { name = "httpx", specifier = ">=0.27.0" },
193
193
  { name = "iterators", specifier = ">=0.2.0" },
194
- { name = "requests", specifier = ">=2.32.3" },
194
+ { name = "requests", specifier = ">=2.31.0" },
195
195
  { name = "websockets", specifier = ">=10.4" },
196
196
  ]
197
197
 
@@ -1 +0,0 @@
1
- __version__ = "1.3.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes