-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed build errors due to recent changes (homebrew/pip) #376
base: master
Are you sure you want to change the base?
Changes from all commits
66a604e
e7116eb
7935ad5
97acf9f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
click | ||
docker-py | ||
PyYAML | ||
requests | ||
#PyYAML | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess these should be uncommented? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same file has |
||
#requests | ||
retrying | ||
six | ||
tqdm | ||
|
||
scrapinghub>=2.0.3 | ||
|
||
pip<19.3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems that in the recent pip, the
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah this is good observation! I should have looked into this. Though I'm not sure for now how to write tests for this. 😅 |
||
|
||
# address known vulnerabilities | ||
requests>=2.20.0 # CVE-2018-18074 | ||
pyyaml>=4.2b1 # CVE-2017-18342 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
install_requires=[ | ||
'click', | ||
'docker-py', | ||
'pip', | ||
'pip<19.3', | ||
'PyYAML', | ||
'retrying', | ||
'requests', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!