-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Snyk] Security upgrade urllib3 from 1.24.3 to 1.25.9 (#42)
* fix: requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-1014645 * Update requests to 2.22.0 to match urllib3 version Co-authored-by: Jae Bradley <[email protected]>
- Loading branch information
1 parent
4d29de0
commit 960d516
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="draft_kings", | ||
version="2.0.2", | ||
version="2.0.3", | ||
author="Jae Bradley", | ||
author_email="[email protected]", | ||
license="MIT", | ||
|
@@ -16,10 +16,10 @@ | |
packages=setuptools.find_packages(exclude=["tests"]), | ||
python_requires=">=3.4", | ||
install_requires=[ | ||
"requests==2.20.0", | ||
"requests==2.22.0", | ||
"pytz==2018.7", | ||
"python-dateutil==2.8.0", | ||
"urllib3==1.24.3", | ||
"urllib3==1.25.9", | ||
], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
|