-
Notifications
You must be signed in to change notification settings - Fork 1
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
Define all requirements required in setup.py file on the extension. #4
Comments
BTW going use jupyter_server==2.12.5 because of this PR fixing a bug: https://github.com/MAAP-Project/jupyter-server-extension/pull/2/files |
Feel free to change the versions as needed. This is just a template. |
@sujen1412 why would I need to add git+https://github.com/MAAP-Project/[email protected]#egg=maapPy to the install_requires? |
Agreed that it is installed when building the image. But how would we know if updating maap-py in the image will break this extension or not ? This extension uses maap-py in its code here - https://github.com/MAAP-Project/jupyter-server-extension/blob/main/jupyter_server_extension/handlers.py#L9. So if we were to say build a base image without maap-py in it, this extension would fail as it is relying on something else to provide its dependency (which also was the root cause of the xmltodict error we are seeing now). So, yes this would be another place we would have to change the version, but in my opinion that is how it should be, independent. |
The current one requires the following
The text was updated successfully, but these errors were encountered: