automicus / PyISY

Python module for interactive with the ISY-994 Insteon controller.
Other
16 stars 22 forks source link

aiohttp and requests pinned to strictly causing issues in Home Assistant upstream #362

Closed frenck closed 1 year ago

frenck commented 1 year ago

This library is pinning aiohttp and requests to strict:

dependencies = [
    "aiohttp==3.8.1",
    "python-dateutil>=2.8.1",
    "requests==2.28.1",
    "colorlog>=6.6.0",
]

https://github.com/automicus/PyISY/blob/8d19796eb2681f0bb053d1dfdade158d9fc19688/pyproject.toml#L28-L33

The problem with that, is that any upstream project is not able to upgrade aiohttp or requests. Please adjust it to a range (or just a minimal version).

Context: Tried to upgrade requests to 2.8.2 @ Home Assistant, which caused a conflict.

../Frenck