Skip to content

Commit

Permalink
Upgrade requests to fix potential security vulnerabilities & fix #49
Browse files Browse the repository at this point in the history
  • Loading branch information
damnever committed Feb 13, 2019
1 parent 233658e commit 2d86f0b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions py2_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# https://github.com/damnever/pigar

# pigar/utils.py: 11
colorama == 0.3.9
colorama == 0.4.1

# pigar/pypi.py: 21
futures == 3.2.0

# pigar/pypi.py: 22
requests == 2.18.4
requests == 2.21.0
4 changes: 2 additions & 2 deletions py3_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://github.com/damnever/pigar

# pigar/utils.py: 11
colorama == 0.3.9
colorama == 0.4.1

# pigar/pypi.py: 22
requests == 2.18.4
requests == 2.21.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
change_logs = f.read()

install_requires = [
'colorama==0.3.9',
'requests==2.18.4',
'colorama>=0.3.9',
'requests>=2.20.0',
]
if sys.version_info < (3, 2):
install_requires.append('futures')
Expand Down

0 comments on commit 2d86f0b

Please sign in to comment.