This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SUBMARINE-1387. Update Jupyter(4.0.8) and Conda(23.10.0) version
### What is this PR for? miniconda repo: https://repo.anaconda.com/miniconda/ jupyterlab release: https://github.com/jupyterlab/jupyterlab/releases Jupyterlab has been upgraded to version 4.0. Link: https://blog.jupyter.org/jupyterlab-4-0-is-here-388d05e03442 ### What type of PR is it? Improvement ### Todos * [x] - Update jupyter to 4.0.8 * [x] - Update conda to 23.10.0 * [x] - Remove pyqlib (to fix python3.9+ compatibility issues, pyqlib does not support 3.9+) * [x] - Add jupyter image building test ### What is the Jira issue? https://issues.apache.org/jira/browse/SUBMARINE-1387 ### How should this be tested? We have created a new CI test for jupyter docker image building ### Screenshots (if appropriate) ### Questions: * Do the license files need updating? YNo * Are there breaking changes for older versions? No * Does this need new documentation? No Author: cdmikechen <[email protected]> Signed-off-by: cdmikechen <[email protected]> Closes #1117 from cdmikechen/SUBMARINE-1387 and squashes the following commits: d38925d [cdmikechen] remove import 98ac730 [cdmikechen] change container command version c1e491a [cdmikechen] update jupyterlab-git to latest(0.5.0) 4f8c716 [cdmikechen] Add license 3b084bb [cdmikechen] fix path error 053570c [cdmikechen] move to local submarine dic 820feb3 [cdmikechen] use git pysubmarine 27fcf53 [cdmikechen] fix jupyter-gpu f71605d [cdmikechen] remove pyqlib c521e53 [cdmikechen] update jupyterlab-git to 0.50.0rc0 8ad46e3 [cdmikechen] update jupyter version c2bd43b [cdmikechen] change name f4b8d58 [cdmikechen] update jupyter-gpu conda d398f73 [cdmikechen] fix workflow config 36ed34d [cdmikechen] add test build workflow 64d7a0d [cdmikechen] update conda
- Loading branch information
1 parent
56ca909
commit 246ecee
Showing
12 changed files
with
174 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Exclude submarine folders | ||
LICENSE | ||
LICENSE-binary | ||
NOTICE | ||
NOTICE-binary | ||
README.md | ||
bin/ | ||
conf/ | ||
dev-support/ | ||
doap_Submarine.rdf | ||
helm-charts/ | ||
licenses-binary | ||
pom.xml | ||
pyproject.toml | ||
submarine-all/ | ||
submarine-client/ | ||
submarine-cloud-v2/ | ||
submarine-cloud-v3/ | ||
submarine-commons/ | ||
submarine-dist/ | ||
submarine-experiment-prehandler/ | ||
submarine-serve/ | ||
submarine-server/ | ||
submarine-test/ | ||
submarine-workbench/ | ||
submarine-workbench-v2/ | ||
submarine.iml | ||
target/ | ||
webapps/ | ||
website/ | ||
**/.git/ | ||
**/.idea/ | ||
**/.github/ | ||
|
||
# Allow files in pysubmarine | ||
!submarine-sdk/pysubmarine/** | ||
# Allow files in pysubmarine | ||
!dev-support/docker-images/** | ||
|
||
# Ignore python Distribution / packaging | ||
.Python | ||
**/venv/ | ||
**/env/ | ||
**/build/ | ||
**/develop-eggs/ | ||
**/dist/ | ||
**/downloads/ | ||
**/eggs/ | ||
**/lib/ | ||
**/lib64/ | ||
**/parts/ | ||
**/sdist/ | ||
**/var/ | ||
**/.mypy_cache/ | ||
**/*.egg-info/ | ||
**/.installed.cfg | ||
**/*.egg |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: Building jupyter images | ||
|
||
# Trigger the workflow on master branch push | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
jupyter-images: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 240 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build submarine jupyter | ||
run: ./dev-support/docker-images/jupyter/build.sh | ||
- name: Build submarine jupyter gpu | ||
run: ./dev-support/docker-images/jupyter-gpu/build.sh |
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
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
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
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
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