(2.1.3) fixed a typo and updated pyflowery.version
Some checks failed
Actions / Build (push) Successful in 19s
Actions / Lint with Ruff & Pylint (push) Failing after 14s
Actions / Build Documentation (push) Successful in 23s

This commit is contained in:
Seaswimmer 2024-11-14 15:42:19 -05:00
parent 551c8eb7ca
commit a3acead1fb
Signed by: cswimr
GPG key ID: A9C162E867C851FA
5 changed files with 5 additions and 5 deletions

0
.vscode/settings.json vendored Normal file
View file

View 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

View file

@ -1 +1 @@
VERSION = "2.1.0"
VERSION = "2.1.3"

View file

@ -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"

View file

@ -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" },