mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Constrain requests to a version (#7725)
Add an optional extended description…
This commit is contained in:
parent
6872daab89
commit
2682996939
@ -1,4 +1,4 @@
|
|||||||
requests>=2,<3
|
requests==2.14.2
|
||||||
pyyaml>=3.11,<4
|
pyyaml>=3.11,<4
|
||||||
pytz>=2017.02
|
pytz>=2017.02
|
||||||
pip>=7.1.0
|
pip>=7.1.0
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Home Assistant core
|
# Home Assistant core
|
||||||
requests>=2,<3
|
requests==2.14.2
|
||||||
pyyaml>=3.11,<4
|
pyyaml>=3.11,<4
|
||||||
pytz>=2017.02
|
pytz>=2017.02
|
||||||
pip>=7.1.0
|
pip>=7.1.0
|
||||||
|
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ DOWNLOAD_URL = ('{}/archive/'
|
|||||||
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
|
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
|
||||||
|
|
||||||
REQUIRES = [
|
REQUIRES = [
|
||||||
'requests>=2,<3',
|
'requests==2.14.2',
|
||||||
'pyyaml>=3.11,<4',
|
'pyyaml>=3.11,<4',
|
||||||
'pytz>=2017.02',
|
'pytz>=2017.02',
|
||||||
'pip>=7.1.0',
|
'pip>=7.1.0',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user