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.
- {cartesia-1.3.0 → cartesia-1.3.1}/PKG-INFO +3 -3
- cartesia-1.3.1/cartesia/version.py +1 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/pyproject.toml +3 -3
- {cartesia-1.3.0 → cartesia-1.3.1}/uv.lock +3 -3
- cartesia-1.3.0/cartesia/version.py +0 -1
- {cartesia-1.3.0 → cartesia-1.3.1}/.github/workflows/ci.yaml +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/.github/workflows/publish.yaml +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/.gitignore +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/LICENSE.md +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/Makefile +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/README.md +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/bumpversion.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/__init__.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_async_sse.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_async_websocket.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_constants.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_logger.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_sse.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_types.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/_websocket.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/async_client.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/async_tts.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/client.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/resource.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/tts.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/__init__.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/deprecated.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/retry.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/utils/tts.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/cartesia/voices.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/tests/__init__.py +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/tests/resources/sample-speech-4s.wav +0 -0
- {cartesia-1.3.0 → cartesia-1.3.1}/tests/test_deprecated.py +0 -0
- {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.
|
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.
|
7
|
+
Requires-Dist: httpx>=0.27.0
|
8
8
|
Requires-Dist: iterators>=0.2.0
|
9
|
-
Requires-Dist: requests>=2.
|
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.
|
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.
|
9
|
+
"httpx>=0.27.0",
|
10
10
|
"iterators>=0.2.0",
|
11
|
-
"requests>=2.
|
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.
|
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.
|
192
|
+
{ name = "httpx", specifier = ">=0.27.0" },
|
193
193
|
{ name = "iterators", specifier = ">=0.2.0" },
|
194
|
-
{ name = "requests", specifier = ">=2.
|
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
|
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
|