Skip to content

Commit 84cab1d

Browse files
authored
feat: restore py3.10 support (#2)
1 parent eb6962c commit 84cab1d

File tree

4 files changed

+48
-3
lines changed

4 files changed

+48
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
python-version:
39+
- "3.10"
3940
- "3.11"
4041
- "3.12"
4142
os:

poetry.lock

Lines changed: 44 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ packages = [
2323
"Changelog" = "https://github.com/bdraco/aiosolaredge/blob/main/CHANGELOG.md"
2424

2525
[tool.poetry.dependencies]
26-
python = "^3.11"
26+
python = "^3.10"
2727
aiohttp = ">=3.9.0"
2828
yarl = ">=1.9.0"
2929

src/aiosolaredge/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
__version__ = "0.0.0"
24

35
from .solaredge import SolarEdge

0 commit comments

Comments
 (0)