Skip to content

Commit

Permalink
patch: update requests dep for CVE-2018-18074 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski authored Oct 30, 2018
1 parent 7a61323 commit 1192370
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kubetest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""kubetest -- a Kubernetes integration test framework in Python."""

__title__ = 'kubetest'
__version__ = '0.0.1'
__version__ = '0.0.2'
__description__ = 'A Kubernetes integration test framework in Python.'
__author__ = 'Vapor IO'
__author_email__ = 'vapor@vapor.io'
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pytest==3.8.0
python-dateutil==2.7.3 # via adal, kubernetes
pyyaml==3.13
requests-oauthlib==1.0.0 # via kubernetes
requests==2.19.1 # via adal, kubernetes, requests-oauthlib
requests==2.20.0
rsa==3.4.2 # via google-auth
six==1.11.0 # via cryptography, google-auth, kubernetes, more-itertools, pytest, python-dateutil, websocket-client
urllib3==1.23 # via kubernetes, requests
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
install_requires=[
'kubernetes',
'pyyaml',
'pytest'
'pytest',
'requests>=2.20.0', # used by 'kubernetes'
],
tests_require=[],
zip_safe=False,
Expand Down

0 comments on commit 1192370

Please sign in to comment.