nixpkgs/pkgs/servers/home-assistant/0001-setup.py-relax-dependencies.patch

49 lines
1.2 KiB
Diff
Raw Normal View History

2020-05-20 21:41:42 +00:00
From 9d730514540929dc95a7313bdb385bab95d9a28c Mon Sep 17 00:00:00 2001
From: Martin Weinelt <hexa@darmstadt.ccc.de>
Date: Wed, 20 May 2020 23:23:23 +0200
2020-04-08 14:54:11 +00:00
Subject: [PATCH] setup.py: relax dependencies
---
2020-05-20 21:41:42 +00:00
setup.py | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
2020-04-08 14:54:11 +00:00
diff --git a/setup.py b/setup.py
2020-05-20 21:41:42 +00:00
index 1473fd1f5f..149af58b3a 100755
2020-04-08 14:54:11 +00:00
--- a/setup.py
+++ b/setup.py
2020-04-29 14:32:56 +00:00
@@ -32,24 +32,24 @@ 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-04-08 14:54:11 +00:00
"bcrypt==3.1.7",
2020-05-20 21:41:42 +00:00
"certifi>=2020.4.5.1",
2020-04-08 14:54:11 +00:00
"ciso8601==2.1.3",
2020-04-29 14:32:56 +00:00
- "importlib-metadata==1.6.0",
+ "importlib-metadata>=1.5.0",
2020-04-14 11:19:33 +00:00
"jinja2>=2.11.1",
"PyJWT==1.7.1",
# PyJWT has loose dependency. We want the latest one.
2020-05-20 21:41:42 +00:00
- "cryptography==2.9.2",
2020-04-29 14:32:56 +00:00
+ "cryptography>=2.9",
2020-04-08 14:54:11 +00:00
"pip>=8.0.3",
"python-slugify==4.0.0",
2020-05-20 21:41:42 +00:00
- "pytz>=2020.1",
2020-04-08 14:54:11 +00:00
- "pyyaml==5.3.1",
- "requests==2.23.0",
- "ruamel.yaml==0.15.100",
2020-05-20 21:41:42 +00:00
+ "pytz>=2019.03",
2020-04-08 14:54:11 +00:00
+ "pyyaml>=5.2",
+ "requests>=2.22",
+ "ruamel.yaml>=0.15.100",
"voluptuous==0.11.7",
"voluptuous-serialize==2.3.0",
]
--
2020-05-20 21:41:42 +00:00
2.26.2
2020-04-08 14:54:11 +00:00