Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin crypto #15978

Merged
merged 2 commits into from
Aug 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/notify/html5.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from homeassistant.helpers import config_validation as cv
from homeassistant.util import ensure_unique_string

REQUIREMENTS = ['pywebpush==1.6.0', 'PyJWT==1.6.0']
REQUIREMENTS = ['pywebpush==1.6.0']

DEPENDENCIES = ['frontend']

Expand Down
1 change: 1 addition & 0 deletions homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ attrs==18.1.0
certifi>=2018.04.16
jinja2>=2.10
PyJWT==1.6.4
cryptography==2.3.1
pip>=8.0.3
pytz>=2018.04
pyyaml>=3.13,<4
Expand Down
4 changes: 1 addition & 3 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ attrs==18.1.0
certifi>=2018.04.16
jinja2>=2.10
PyJWT==1.6.4
cryptography==2.3.1
pip>=8.0.3
pytz>=2018.04
pyyaml>=3.13,<4
Expand Down Expand Up @@ -39,9 +40,6 @@ Mastodon.py==1.3.1
# homeassistant.components.isy994
PyISY==1.1.0

# homeassistant.components.notify.html5
PyJWT==1.6.0

# homeassistant.components.sensor.mvglive
PyMVGLive==1.1.4

Expand Down
3 changes: 0 additions & 3 deletions requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ requests_mock==1.5.2
# homeassistant.components.homekit
HAP-python==2.2.2

# homeassistant.components.notify.html5
PyJWT==1.6.0

# homeassistant.components.sensor.rmvtransport
PyRMVtransport==0.0.7

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
'certifi>=2018.04.16',
'jinja2>=2.10',
'PyJWT==1.6.4',
# PyJWT has loose dependency. We want the latest one.
'cryptography==2.3.1',
'pip>=8.0.3',
'pytz>=2018.04',
'pyyaml>=3.13,<4',
Expand Down