-
Notifications
You must be signed in to change notification settings - Fork 57
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
PNDA-4800 Fix for known vulnerabilities for python notebook,paramiko #239
base: develop
Are you sure you want to change the base?
Conversation
janselva
commented
Aug 20, 2018
- updated the paramiko version
- Updated the notebook package, also its dependencies packages.
Would it be possible to make the necessary changes but keep the organization of the file the same, as it will then be much easier to review. I do agree that the order should be corrected, but let's do that as a separate change as we know that will be of no functional consequence and can treat it accordingly. |
Fixed the review comments |
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.
Thanks for making the change clearer. In order to merge this and related PRs, we'll need to understand why dependencies that were previously only needed for python3 now need to be included for python2, and vice versa.
Jupyter extension installing "widgets extension" package in PY2 this will require a notebook package. The newer version of notebook package requires the additional dependencies, this is not resolved by py2, that's why added the additional packages into PY2. |
Yes, but it seems odd that these dependencies are required for both python2 and 3, wouldn't you agree? Why can't they all be python3 for example? I'm questioning the code you're modifying, more than your change, which makes sense if they are indeed required. |