Skip to content

Commit 9cecf24

Browse files
committed
deps: bump aiohttp dependency to version 3.11.12
1 parent ff8cf50 commit 9cecf24

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
shell: bash
2323
- uses: actions/setup-python@v5
2424
with:
25-
python-version: '3.8'
25+
python-version: '3.9'
2626
architecture: x64
2727
- name: Install dependencies
2828
run: python3 -m pip install .

docs/changelog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, header_name: str):
1414
def append(self, row_contents: str) -> None:
1515
self.character_length = max(
1616
self.character_length,
17-
max(map(lambda content: len(list(content)), row_contents.splitlines())),
17+
max(len(list(content)) for content in row_contents.splitlines()),
1818
)
1919
self.rows.append(row_contents)
2020

pyproject.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
license = { text = "MIT" }
1010
authors = [{ name = "null8626" }]
1111
keywords = ["weather", "forecast", "weather-api", "weather-forecast"]
12-
dependencies = ["aiohttp>=3.10.10"]
12+
dependencies = ["aiohttp>=3.11.12"]
1313
classifiers = [
1414
"Development Status :: 5 - Production/Stable",
1515
"Intended Audience :: Education",
@@ -27,14 +27,13 @@ classifiers = [
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
2929
"Programming Language :: Python :: 3 :: Only",
30-
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",
3534
"Programming Language :: Python :: 3.13"
3635
]
37-
requires-python = ">=3.8"
36+
requires-python = ">=3.9"
3837

3938
[project.urls]
4039
Documentation = "https://python-weather.readthedocs.io/en/latest/"

0 commit comments

Comments
 (0)