From fba357030da30b2fa8155852f6510f35e981ab40 Mon Sep 17 00:00:00 2001 From: null8626 Date: Fri, 6 Dec 2024 17:48:26 +0700 Subject: [PATCH] deps: bump aiohttp dependency to version 3.11.10 --- docs/changelog.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.py b/docs/changelog.py index 8c6178d..36398b8 100644 --- a/docs/changelog.py +++ b/docs/changelog.py @@ -14,7 +14,7 @@ def __init__(self, header_name: str): def append(self, row_contents: str) -> None: self.character_length = max( self.character_length, - max(map(lambda content: len(list(content)), row_contents.splitlines())), + max(len(list(content)) for content in row_contents.splitlines()), ) self.rows.append(row_contents) diff --git a/pyproject.toml b/pyproject.toml index 07b5801..2131465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ readme = "README.md" license = { text = "MIT" } authors = [{ name = "null8626" }] keywords = ["weather", "forecast", "weather-api", "weather-forecast"] -dependencies = ["aiohttp>=3.11.7"] +dependencies = ["aiohttp>=3.11.10"] classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Education",