From 8f52fda97c4d999b6f4d3601cea4da805e7a4218 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sun, 15 Sep 2024 23:43:58 -0400 Subject: [PATCH] downgraded aiohttp (1.0.1) --- poetry.lock | 8 ++++---- pyflowery/version.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/poetry.lock b/poetry.lock index e2aeb8c..f6127fb 100644 --- a/poetry.lock +++ b/poetry.lock @@ -280,13 +280,13 @@ files = [ [[package]] name = "idna" -version = "3.9" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.6" files = [ - {file = "idna-3.9-py3-none-any.whl", hash = "sha256:69297d5da0cc9281c77efffb4e730254dd45943f45bbfb461de5991713989b1e"}, - {file = "idna-3.9.tar.gz", hash = "sha256:e5c5dafde284f26e9e0f28f6ea2d6400abd5ca099864a67f576f3981c6476124"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] [package.extras] @@ -607,4 +607,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "b6895205598c0f2bdef2632b7ceddf8d5afbf13780afe8bb1c54e537fd0f4e92" +content-hash = "1094114925871fd6689a55e4618c153b3da0b17d23663e1284e2127b5f8ce60f" diff --git a/pyflowery/version.py b/pyflowery/version.py index 3277f64..50b5ea9 100644 --- a/pyflowery/version.py +++ b/pyflowery/version.py @@ -1 +1 @@ -VERSION = "1.0.0" +VERSION = "1.0.1" diff --git a/pyproject.toml b/pyproject.toml index c4d31b3..bc12f0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyflowery" -version = "1.0.0" +version = "1.0.1" description = "A Python API wrapper for the Flowery API" authors = ["cswimr "] license = "GPL 3.0-only" @@ -8,7 +8,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.11" -aiohttp = "^3.10.5" +aiohttp = "^3.9.5" [tool.poetry.group.dev.dependencies] pylint = "^3.2.7"