Skip to content

Commit

Permalink
Bump some dependencies
Browse files Browse the repository at this point in the history
requests==2.22.0 pulls in old versions of urllib3, which has security issues.
Update some dev/test dependencies while we're at it.
  • Loading branch information
mortenlj committed Jan 28, 2022
1 parent 83f0e58 commit 8018d2c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Expand Up @@ -22,23 +22,23 @@

GENERIC_REQ = [
"six>=1.12.0",
"requests==2.22.0",
"requests==2.27.1",
"pyrfc3339==1.1",
"cachetools==3.1.1",
"cachetools==3.1.1", # Newer versions require Python 3
]

CODE_QUALITY_REQ = [
'prospector==1.2.0', # Newer versions require Python 3
]

TESTS_REQ = [
'tox==3.23.0',
'mock==3.0.5',
"pytest-sugar==0.9.2",
"pytest-html==1.22.0",
'tox==3.24.5',
'mock==3.0.5', # Newer versions require Python 3
"pytest-sugar==0.9.4",
"pytest-html==1.22.0", # Newer versions require Python 3
"pytest-cov==2.7.1",
"pytest-helpers-namespace==2019.1.8",
'pytest==3.10.1',
'pytest==4.6.11', # Newer versions require Python 3
]


Expand Down

0 comments on commit 8018d2c

Please sign in to comment.