nixpkgs/pkgs/servers/home-assistant/relax-dependencies.patch

25 lines
606 B
Diff
Raw Normal View History

2020-04-08 14:54:11 +00:00
diff --git a/setup.py b/setup.py
index c2042ab245..98f348510f 100755
2020-04-08 14:54:11 +00:00
--- a/setup.py
+++ b/setup.py
2020-07-02 03:35:32 +00:00
@@ -32,7 +32,7 @@ PROJECT_URLS = {
2020-04-08 14:54:11 +00:00
PACKAGES = find_packages(exclude=["tests", "tests.*"])
REQUIRES = [
- "aiohttp==3.6.1",
+ "aiohttp>=3.6.1",
"astral==1.10.1",
"async_timeout==3.0.1",
2020-05-20 21:41:42 +00:00
"attrs==19.3.0",
2020-07-02 03:35:32 +00:00
@@ -48,8 +48,8 @@ REQUIRES = [
2020-04-08 14:54:11 +00:00
"python-slugify==4.0.0",
2020-07-02 03:35:32 +00:00
"pytz>=2020.1",
"pyyaml==5.3.1",
- "requests==2.24.0",
2020-04-08 14:54:11 +00:00
- "ruamel.yaml==0.15.100",
2020-07-02 03:35:32 +00:00
+ "requests>=2.23.0",
2020-04-08 14:54:11 +00:00
+ "ruamel.yaml>=0.15.100",
"voluptuous==0.11.7",
"voluptuous-serialize==2.4.0",
2020-04-08 14:54:11 +00:00
]