(2.1.3) fixed a typo and updated pyflowery.version
This commit is contained in:
parent
551c8eb7ca
commit
a3acead1fb
5 changed files with 5 additions and 5 deletions
0
.vscode/settings.json
vendored
Normal file
0
.vscode/settings.json
vendored
Normal file
|
@ -53,7 +53,7 @@ class FloweryAPI:
|
|||
return self._voices_cache or None
|
||||
|
||||
async def fetch_voice(self, voice_id: str) -> Voice:
|
||||
"""Fetch a voice from the Flowery API. This method bypasses the cache and directly queries the Flowery API. You should usually use `get_voice()` instead.
|
||||
"""Fetch a voice from the Flowery API. This method bypasses the cache and directly queries the Flowery API. You should usually use `get_voices()` instead.
|
||||
|
||||
Args:
|
||||
voice_id (str): The ID of the voice
|
||||
|
|
|
@ -1 +1 @@
|
|||
VERSION = "2.1.0"
|
||||
VERSION = "2.1.3"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "pyflowery"
|
||||
version = "2.1.2"
|
||||
version = "2.1.3"
|
||||
description = "A Python API wrapper for the Flowery API"
|
||||
readme = "README.md"
|
||||
requires-python = "<4.0,>=3.11"
|
||||
|
|
4
uv.lock
4
uv.lock
|
@ -1,5 +1,5 @@
|
|||
version = 1
|
||||
requires-python = ">=3.11"
|
||||
requires-python = ">=3.11, <4.0"
|
||||
resolution-markers = [
|
||||
"python_full_version < '3.12'",
|
||||
"python_full_version >= '3.12'",
|
||||
|
@ -891,7 +891,7 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "pyflowery"
|
||||
version = "2.1.1"
|
||||
version = "2.1.2"
|
||||
source = { virtual = "." }
|
||||
dependencies = [
|
||||
{ name = "aiohttp" },
|
||||
|
|
Loading…
Reference in a new issue