Skip to content

Commit

Permalink
Merge pull request damnever#51 from damnever/fix-49
Browse files Browse the repository at this point in the history
Upgrade requests to fix potential security vulnerabilities
  • Loading branch information
damnever committed Feb 17, 2019
2 parents 233658e + 6d7b429 commit a7fe92f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pigar/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

from __future__ import print_function, division, absolute_import

version = __version__ = '0.9.0'
version = __version__ = '0.9.1'
version_info = [int(num) for num in version.split('.')]
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 a7fe92f

Please sign in to comment.