├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── PR_TEMPLATE.md │ ├── add-nightly-builds.yml │ ├── build-image.yml │ ├── check-image-size.yml │ ├── check_code_quality.yml │ ├── nightly-image-build.yml │ ├── remove-nightly-build.yml │ ├── update-environment-lock.yml │ ├── utils │ └── nightly_build_helper.py │ └── validate-image.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASE.md ├── build_artifacts ├── v0 │ ├── v0.0 │ │ ├── v0.0.0 │ │ │ ├── Dockerfile │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ └── gpu.env.out │ │ ├── v0.0.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ └── v0.0.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.1 │ │ ├── v0.1.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ ├── v0.1.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ └── v0.1.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.10 │ │ └── v0.10.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v0.11 │ │ └── v0.11.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v0.12 │ │ └── v0.12.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v0.13 │ │ └── v0.13.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v0.2 │ │ ├── v0.2.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ ├── v0.2.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ └── v0.2.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.3 │ │ └── v0.3.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.4 │ │ ├── v0.4.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ ├── v0.4.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ ├── v0.4.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ ├── v0.4.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ └── v0.4.4 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.5 │ │ ├── v0.5.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ └── v0.5.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.6 │ │ └── v0.6.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.7 │ │ ├── v0.7.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ └── v0.7.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ ├── v0.8 │ │ ├── v0.8.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ ├── v0.8.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ │ └── v0.8.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ └── source-version.txt │ └── v0.9 │ │ ├── v0.9.0 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ │ ├── v0.9.1 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ │ ├── v0.9.2 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ │ └── v0.9.3 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── dirs │ │ ├── etc │ │ │ ├── conda │ │ │ │ └── .condarc │ │ │ ├── jupyter │ │ │ │ └── jupyter_server_config.py │ │ │ └── supervisor │ │ │ │ └── conf.d │ │ │ │ └── supervisord.conf │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── entrypoint-jupyter-server │ │ │ ├── restart-jupyter-server │ │ │ └── start-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt ├── v1 │ ├── v1.0 │ │ └── v1.0.0 │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ └── patch_glue_spark.json │ ├── v1.1 │ │ └── v1.1.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.10 │ │ ├── v1.10.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.10.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.11 │ │ └── v1.11.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.12 │ │ ├── v1.12.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.12.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.12.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.12.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.12.4 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ ├── patches │ │ │ │ │ ├── apply_patches.sh │ │ │ │ │ └── jupyterlab-git.patch │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.13 │ │ ├── v1.13.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.13.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.2 │ │ ├── v1.2.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.2.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.3 │ │ ├── v1.3.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.3.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.4 │ │ ├── v1.4.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.additional_packages_env.in │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.additional_packages_env.in │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.4.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.4.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.4.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.4.4 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.5 │ │ ├── v1.5.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.5.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.5.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.5.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.6 │ │ ├── v1.6.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.additional_packages_env.in │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.additional_packages_env.in │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.6.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.6.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.6.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.7 │ │ ├── v1.7.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.additional_packages_env.in │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.additional_packages_env.in │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v1.7.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v1.7.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v1.8 │ │ └── v1.8.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ └── v1.9 │ │ ├── v1.9.0 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.additional_packages_env.in │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ ├── gpu.additional_packages_env.in │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ │ └── v1.9.1 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── dirs │ │ ├── etc │ │ │ ├── code-editor │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ └── extensions.txt │ │ │ ├── conda │ │ │ │ └── .condarc │ │ │ ├── jupyter │ │ │ │ └── jupyter_server_config.py │ │ │ └── supervisor │ │ │ │ └── conf.d │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ ├── supervisord-common.conf │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ └── supervisord.conf │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── entrypoint-code-editor │ │ │ ├── entrypoint-jupyter-server │ │ │ ├── restart-jupyter-server │ │ │ ├── start-code-editor │ │ │ └── start-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt ├── v2 │ ├── v2.0 │ │ ├── v2.0.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.additional_packages_env.in │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.additional_packages_env.in │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v2.0.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v2.1 │ │ ├── v2.1.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.1.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.1.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.1.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v2.1.4 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v2.2 │ │ ├── v2.2.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.additional_packages_env.in │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.additional_packages_env.in │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.2.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.2.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.2.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.2.4 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v2.2.5 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v2.3 │ │ ├── v2.3.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.additional_packages_env.in │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.additional_packages_env.in │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.3.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.3.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.3.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v2.3.4 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── merge-settings-util.py │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v2.4 │ │ ├── v2.4.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.4.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ ├── v2.4.2 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v2.4.3 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── merge-settings-util.py │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v2.5 │ │ └── v2.5.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ ├── patches │ │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ │ ├── 0004-fix-boto3-endpoints.patch │ │ │ │ │ └── apply_patches.sh │ │ │ │ ├── sagemaker-ui │ │ │ │ │ ├── git_clone.sh │ │ │ │ │ ├── jupyter │ │ │ │ │ │ ├── lab │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ │ ├── overrides.json │ │ │ │ │ │ │ │ └── page_config.json │ │ │ │ │ │ └── server │ │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ ├── kernels │ │ │ │ │ │ ├── kernel_launchers │ │ │ │ │ │ │ └── python3_kernel_launcher.sh │ │ │ │ │ │ └── python3 │ │ │ │ │ │ │ └── kernel.json │ │ │ │ │ ├── libmgmt │ │ │ │ │ │ └── install-lib.sh │ │ │ │ │ ├── sagemaker_ui_post_startup.sh │ │ │ │ │ └── workflows │ │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ │ ├── healthcheck.sh │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ │ │ │ ├── requirements │ │ │ │ │ │ └── requirements.txt │ │ │ │ │ │ ├── sample_dag.py │ │ │ │ │ │ ├── sm-spark-cli-install.sh │ │ │ │ │ │ ├── sm_init_script.sh │ │ │ │ │ │ ├── start-workflows-container.sh │ │ │ │ │ │ ├── startup │ │ │ │ │ │ └── startup.sh │ │ │ │ │ │ ├── stop-workflows-container.sh │ │ │ │ │ │ └── workflow_client.py │ │ │ │ ├── sagemaker │ │ │ │ │ └── sm_pysdk_default_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ ├── supervisord-sagemaker-ui-default.conf │ │ │ │ │ ├── supervisord-sagemaker-ui.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── entrypoint-sagemaker-ui-jupyter-server │ │ │ │ ├── merge-settings-util.py │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── restart-sagemaker-ui-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ ├── start-jupyter-server │ │ │ │ └── start-sagemaker-ui-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ ├── v2.6 │ │ ├── v2.6.0 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ │ ├── etc │ │ │ │ │ ├── code-editor │ │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ │ └── extensions.txt │ │ │ │ │ ├── conda │ │ │ │ │ │ └── .condarc │ │ │ │ │ ├── jupyter │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ ├── patches │ │ │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ │ │ ├── 0004-fix-boto3-endpoints.patch │ │ │ │ │ │ ├── apply_patches.sh │ │ │ │ │ │ └── smus │ │ │ │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ │ │ │ └── 0004-fix-boto3-endpoints.patch │ │ │ │ │ ├── sagemaker-ui │ │ │ │ │ │ ├── git_clone.sh │ │ │ │ │ │ ├── jupyter │ │ │ │ │ │ │ ├── lab │ │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ │ │ ├── overrides.json │ │ │ │ │ │ │ │ │ └── page_config.json │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ │ ├── kernels │ │ │ │ │ │ │ ├── kernel_launchers │ │ │ │ │ │ │ │ └── python3_kernel_launcher.sh │ │ │ │ │ │ │ └── python3 │ │ │ │ │ │ │ │ └── kernel.json │ │ │ │ │ │ ├── libmgmt │ │ │ │ │ │ │ └── install-lib.sh │ │ │ │ │ │ ├── sagemaker_ui_post_startup.sh │ │ │ │ │ │ ├── set_code_editor_theme.sh │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ │ │ ├── healthcheck.sh │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ │ │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ │ │ │ │ ├── requirements │ │ │ │ │ │ │ └── requirements.txt │ │ │ │ │ │ │ ├── sample_dag.py │ │ │ │ │ │ │ ├── sm-spark-cli-install.sh │ │ │ │ │ │ │ ├── sm_init_script.sh │ │ │ │ │ │ │ ├── start-workflows-container.sh │ │ │ │ │ │ │ ├── startup │ │ │ │ │ │ │ └── startup.sh │ │ │ │ │ │ │ ├── stop-workflows-container.sh │ │ │ │ │ │ │ └── workflow_client.py │ │ │ │ │ ├── sagemaker │ │ │ │ │ │ └── sm_pysdk_default_config.py │ │ │ │ │ └── supervisor │ │ │ │ │ │ └── conf.d │ │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ │ ├── supervisord-sagemaker-ui-code-editor.conf │ │ │ │ │ │ ├── supervisord-sagemaker-ui-default.conf │ │ │ │ │ │ ├── supervisord-sagemaker-ui.conf │ │ │ │ │ │ └── supervisord.conf │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ ├── entrypoint-code-editor │ │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ │ ├── entrypoint-sagemaker-ui-code-editor │ │ │ │ │ ├── entrypoint-sagemaker-ui-jupyter-server │ │ │ │ │ ├── merge-settings-util.py │ │ │ │ │ ├── restart-jupyter-server │ │ │ │ │ ├── restart-sagemaker-ui-jupyter-server │ │ │ │ │ ├── start-code-editor │ │ │ │ │ ├── start-jupyter-server │ │ │ │ │ ├── start-sagemaker-ui-code-editor │ │ │ │ │ └── start-sagemaker-ui-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ │ └── v2.6.1 │ │ │ ├── CHANGELOG-cpu.md │ │ │ ├── CHANGELOG-gpu.md │ │ │ ├── Dockerfile │ │ │ ├── RELEASE.md │ │ │ ├── cpu.env.in │ │ │ ├── cpu.env.out │ │ │ ├── cpu.pinned_env.in │ │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ ├── patches │ │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ │ ├── 0004-fix-boto3-endpoints.patch │ │ │ │ │ ├── apply_patches.sh │ │ │ │ │ └── smus │ │ │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ │ │ └── 0004-fix-boto3-endpoints.patch │ │ │ │ ├── sagemaker-ui │ │ │ │ │ ├── git_clone.sh │ │ │ │ │ ├── git_config.sh │ │ │ │ │ ├── jupyter │ │ │ │ │ │ ├── lab │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ │ ├── overrides.json │ │ │ │ │ │ │ │ └── page_config.json │ │ │ │ │ │ └── server │ │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ │ ├── kernels │ │ │ │ │ │ ├── kernel_launchers │ │ │ │ │ │ │ └── python3_kernel_launcher.sh │ │ │ │ │ │ └── python3 │ │ │ │ │ │ │ └── kernel.json │ │ │ │ │ ├── libmgmt │ │ │ │ │ │ └── install-lib.sh │ │ │ │ │ ├── sagemaker_ui_post_startup.sh │ │ │ │ │ ├── set_code_editor_theme.sh │ │ │ │ │ └── workflows │ │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ │ ├── healthcheck.sh │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ │ │ │ ├── requirements │ │ │ │ │ │ └── requirements.txt │ │ │ │ │ │ ├── sample_dag.py │ │ │ │ │ │ ├── sm-spark-cli-install.sh │ │ │ │ │ │ ├── sm_init_script.sh │ │ │ │ │ │ ├── start-workflows-container.sh │ │ │ │ │ │ ├── startup │ │ │ │ │ │ └── startup.sh │ │ │ │ │ │ ├── stop-workflows-container.sh │ │ │ │ │ │ └── workflow_client.py │ │ │ │ ├── sagemaker │ │ │ │ │ └── sm_pysdk_default_config.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ ├── supervisord-sagemaker-ui-code-editor.conf │ │ │ │ │ ├── supervisord-sagemaker-ui-default.conf │ │ │ │ │ ├── supervisord-sagemaker-ui.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── entrypoint-sagemaker-ui-code-editor │ │ │ │ ├── entrypoint-sagemaker-ui-jupyter-server │ │ │ │ ├── merge-settings-util.py │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── restart-sagemaker-ui-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ ├── start-jupyter-server │ │ │ │ ├── start-sagemaker-ui-code-editor │ │ │ │ └── start-sagemaker-ui-jupyter-server │ │ │ ├── gpu.arg_based_env.in │ │ │ ├── gpu.env.in │ │ │ ├── gpu.env.out │ │ │ ├── gpu.pinned_env.in │ │ │ ├── patch_glue_pyspark.json │ │ │ ├── patch_glue_spark.json │ │ │ └── source-version.txt │ └── v2.7 │ │ └── v2.7.0 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── cpu.pinned_env.in │ │ ├── dirs │ │ ├── etc │ │ │ ├── code-editor │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ └── extensions.txt │ │ │ ├── conda │ │ │ │ └── .condarc │ │ │ ├── jupyter │ │ │ │ └── jupyter_server_config.py │ │ │ ├── patches │ │ │ │ ├── apply_patches.sh │ │ │ │ └── smus │ │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ │ └── 0004-fix-boto3-endpoints.patch │ │ │ ├── sagemaker-ui │ │ │ │ ├── git_clone.sh │ │ │ │ ├── git_config.sh │ │ │ │ ├── jupyter │ │ │ │ │ ├── lab │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ ├── overrides.json │ │ │ │ │ │ │ └── page_config.json │ │ │ │ │ └── server │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ ├── kernels │ │ │ │ │ ├── kernel_launchers │ │ │ │ │ │ └── python3_kernel_launcher.sh │ │ │ │ │ └── python3 │ │ │ │ │ │ └── kernel.json │ │ │ │ ├── libmgmt │ │ │ │ │ └── install-lib.sh │ │ │ │ ├── sagemaker_ui_post_startup.sh │ │ │ │ ├── set_code_editor_theme.sh │ │ │ │ └── workflows │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ ├── healthcheck.sh │ │ │ │ │ ├── plugins │ │ │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ │ │ ├── requirements │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── sample_dag.py │ │ │ │ │ ├── sm-spark-cli-install.sh │ │ │ │ │ ├── sm_init_script.sh │ │ │ │ │ ├── start-workflows-container.sh │ │ │ │ │ ├── startup │ │ │ │ │ └── startup.sh │ │ │ │ │ ├── stop-workflows-container.sh │ │ │ │ │ └── workflow_client.py │ │ │ ├── sagemaker │ │ │ │ └── sm_pysdk_default_config.py │ │ │ └── supervisor │ │ │ │ └── conf.d │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ ├── supervisord-common.conf │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ ├── supervisord-sagemaker-ui-code-editor.conf │ │ │ │ ├── supervisord-sagemaker-ui-default.conf │ │ │ │ ├── supervisord-sagemaker-ui.conf │ │ │ │ └── supervisord.conf │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── entrypoint-code-editor │ │ │ ├── entrypoint-jupyter-server │ │ │ ├── entrypoint-sagemaker-ui-code-editor │ │ │ ├── entrypoint-sagemaker-ui-jupyter-server │ │ │ ├── merge-settings-util.py │ │ │ ├── restart-jupyter-server │ │ │ ├── restart-sagemaker-ui-jupyter-server │ │ │ ├── start-code-editor │ │ │ ├── start-jupyter-server │ │ │ ├── start-sagemaker-ui-code-editor │ │ │ └── start-sagemaker-ui-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── gpu.pinned_env.in │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt └── v3 │ ├── v3.0 │ ├── v3.0.0 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── cpu.pinned_env.in │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ ├── sagemaker-inference-server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── serve │ │ │ │ │ ├── serve.py │ │ │ │ │ ├── tornado_server │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── async_handler.py │ │ │ │ │ │ ├── server.py │ │ │ │ │ │ ├── stream_handler.py │ │ │ │ │ │ └── sync_handler.py │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── environment.py │ │ │ │ │ │ ├── exception.py │ │ │ │ │ │ └── logger.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── merge-settings-util.py │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── gpu.pinned_env.in │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ ├── v3.0.1 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── cpu.pinned_env.in │ │ ├── dirs │ │ │ ├── etc │ │ │ │ ├── code-editor │ │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ │ └── extensions.txt │ │ │ │ ├── conda │ │ │ │ │ └── .condarc │ │ │ │ ├── jupyter │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ ├── sagemaker-inference-server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── serve │ │ │ │ │ ├── serve.py │ │ │ │ │ ├── tornado_server │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── async_handler.py │ │ │ │ │ │ ├── server.py │ │ │ │ │ │ ├── stream_handler.py │ │ │ │ │ │ └── sync_handler.py │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── environment.py │ │ │ │ │ │ ├── exception.py │ │ │ │ │ │ └── logger.py │ │ │ │ └── supervisor │ │ │ │ │ └── conf.d │ │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ │ ├── supervisord-common.conf │ │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ │ └── supervisord.conf │ │ │ └── usr │ │ │ │ └── local │ │ │ │ └── bin │ │ │ │ ├── entrypoint-code-editor │ │ │ │ ├── entrypoint-jupyter-server │ │ │ │ ├── merge-settings-util.py │ │ │ │ ├── restart-jupyter-server │ │ │ │ ├── start-code-editor │ │ │ │ └── start-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── gpu.pinned_env.in │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ └── v3.0.2 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── cpu.pinned_env.in │ │ ├── dirs │ │ ├── etc │ │ │ ├── code-editor │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ └── extensions.txt │ │ │ ├── conda │ │ │ │ └── .condarc │ │ │ ├── jupyter │ │ │ │ └── jupyter_server_config.py │ │ │ ├── sagemaker-inference-server │ │ │ │ ├── __init__.py │ │ │ │ ├── serve │ │ │ │ ├── serve.py │ │ │ │ ├── tornado_server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_handler.py │ │ │ │ │ ├── server.py │ │ │ │ │ ├── stream_handler.py │ │ │ │ │ └── sync_handler.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── exception.py │ │ │ │ │ └── logger.py │ │ │ └── supervisor │ │ │ │ └── conf.d │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ ├── supervisord-common.conf │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ └── supervisord.conf │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── entrypoint-code-editor │ │ │ ├── entrypoint-jupyter-server │ │ │ ├── merge-settings-util.py │ │ │ ├── restart-jupyter-server │ │ │ ├── start-code-editor │ │ │ └── start-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── gpu.pinned_env.in │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ ├── v3.1 │ └── v3.1.0 │ │ ├── CHANGELOG-cpu.md │ │ ├── CHANGELOG-gpu.md │ │ ├── Dockerfile │ │ ├── RELEASE.md │ │ ├── cpu.env.in │ │ ├── cpu.env.out │ │ ├── cpu.pinned_env.in │ │ ├── dirs │ │ ├── etc │ │ │ ├── code-editor │ │ │ │ ├── code_editor_machine_settings.json │ │ │ │ ├── code_editor_user_settings.json │ │ │ │ └── extensions.txt │ │ │ ├── conda │ │ │ │ └── .condarc │ │ │ ├── jupyter │ │ │ │ └── jupyter_server_config.py │ │ │ ├── patches │ │ │ │ ├── apply_patches.sh │ │ │ │ └── smus │ │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ │ └── 0004-fix-boto3-endpoints.patch │ │ │ ├── sagemaker-inference-server │ │ │ │ ├── __init__.py │ │ │ │ ├── serve │ │ │ │ ├── serve.py │ │ │ │ ├── tornado_server │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_handler.py │ │ │ │ │ ├── server.py │ │ │ │ │ ├── stream_handler.py │ │ │ │ │ └── sync_handler.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── exception.py │ │ │ │ │ └── logger.py │ │ │ ├── sagemaker-ui │ │ │ │ ├── git_clone.sh │ │ │ │ ├── git_config.sh │ │ │ │ ├── jupyter │ │ │ │ │ ├── lab │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ ├── overrides.json │ │ │ │ │ │ │ └── page_config.json │ │ │ │ │ └── server │ │ │ │ │ │ └── jupyter_server_config.py │ │ │ │ ├── kernels │ │ │ │ │ ├── kernel_launchers │ │ │ │ │ │ └── python3_kernel_launcher.sh │ │ │ │ │ └── python3 │ │ │ │ │ │ └── kernel.json │ │ │ │ ├── libmgmt │ │ │ │ │ └── install-lib.sh │ │ │ │ ├── sagemaker_ui_post_startup.sh │ │ │ │ ├── set_code_editor_theme.sh │ │ │ │ └── workflows │ │ │ │ │ ├── docker-compose.yaml │ │ │ │ │ ├── healthcheck.sh │ │ │ │ │ ├── plugins │ │ │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ │ │ ├── requirements │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── sample_dag.py │ │ │ │ │ ├── sm-spark-cli-install.sh │ │ │ │ │ ├── sm_init_script.sh │ │ │ │ │ ├── start-workflows-container.sh │ │ │ │ │ ├── startup │ │ │ │ │ └── startup.sh │ │ │ │ │ ├── stop-workflows-container.sh │ │ │ │ │ └── workflow_client.py │ │ │ ├── sagemaker │ │ │ │ └── sm_pysdk_default_config.py │ │ │ └── supervisor │ │ │ │ └── conf.d │ │ │ │ ├── supervisord-code-editor.conf │ │ │ │ ├── supervisord-common.conf │ │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ │ ├── supervisord-sagemaker-ui-code-editor.conf │ │ │ │ ├── supervisord-sagemaker-ui-default.conf │ │ │ │ ├── supervisord-sagemaker-ui.conf │ │ │ │ └── supervisord.conf │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── entrypoint-code-editor │ │ │ ├── entrypoint-jupyter-server │ │ │ ├── entrypoint-sagemaker-ui-code-editor │ │ │ ├── entrypoint-sagemaker-ui-jupyter-server │ │ │ ├── merge-settings-util.py │ │ │ ├── restart-jupyter-server │ │ │ ├── restart-sagemaker-ui-jupyter-server │ │ │ ├── start-code-editor │ │ │ ├── start-jupyter-server │ │ │ ├── start-sagemaker-ui-code-editor │ │ │ └── start-sagemaker-ui-jupyter-server │ │ ├── gpu.arg_based_env.in │ │ ├── gpu.env.in │ │ ├── gpu.env.out │ │ ├── gpu.pinned_env.in │ │ ├── patch_glue_pyspark.json │ │ ├── patch_glue_spark.json │ │ └── source-version.txt │ └── v3.2 │ └── v3.2.0 │ ├── CHANGELOG-cpu.md │ ├── CHANGELOG-gpu.md │ ├── Dockerfile │ ├── RELEASE.md │ ├── cpu.env.in │ ├── cpu.env.out │ ├── cpu.pinned_env.in │ ├── dirs │ ├── etc │ │ ├── code-editor │ │ │ ├── code_editor_machine_settings.json │ │ │ ├── code_editor_user_settings.json │ │ │ └── extensions.txt │ │ ├── conda │ │ │ └── .condarc │ │ ├── jupyter │ │ │ └── jupyter_server_config.py │ │ ├── patches │ │ │ ├── apply_patches.sh │ │ │ └── smus │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ └── 0004-fix-boto3-endpoints.patch │ │ ├── sagemaker-inference-server │ │ │ ├── __init__.py │ │ │ ├── serve │ │ │ ├── serve.py │ │ │ ├── tornado_server │ │ │ │ ├── __init__.py │ │ │ │ ├── async_handler.py │ │ │ │ ├── server.py │ │ │ │ ├── stream_handler.py │ │ │ │ └── sync_handler.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── environment.py │ │ │ │ ├── exception.py │ │ │ │ └── logger.py │ │ ├── sagemaker-ui │ │ │ ├── git_clone.sh │ │ │ ├── git_config.sh │ │ │ ├── jupyter │ │ │ │ ├── lab │ │ │ │ │ └── settings │ │ │ │ │ │ ├── overrides.json │ │ │ │ │ │ └── page_config.json │ │ │ │ └── server │ │ │ │ │ └── jupyter_server_config.py │ │ │ ├── kernels │ │ │ │ ├── kernel_launchers │ │ │ │ │ └── python3_kernel_launcher.sh │ │ │ │ └── python3 │ │ │ │ │ └── kernel.json │ │ │ ├── libmgmt │ │ │ │ └── install-lib.sh │ │ │ ├── sagemaker_ui_post_startup.sh │ │ │ ├── set_code_editor_theme.sh │ │ │ └── workflows │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── healthcheck.sh │ │ │ │ ├── plugins │ │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ │ ├── requirements │ │ │ │ └── requirements.txt │ │ │ │ ├── sample_dag.py │ │ │ │ ├── sm-spark-cli-install.sh │ │ │ │ ├── sm_init_script.sh │ │ │ │ ├── start-workflows-container.sh │ │ │ │ ├── startup │ │ │ │ └── startup.sh │ │ │ │ ├── stop-workflows-container.sh │ │ │ │ └── workflow_client.py │ │ ├── sagemaker │ │ │ └── sm_pysdk_default_config.py │ │ └── supervisor │ │ │ └── conf.d │ │ │ ├── supervisord-code-editor.conf │ │ │ ├── supervisord-common.conf │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ ├── supervisord-sagemaker-ui-code-editor.conf │ │ │ ├── supervisord-sagemaker-ui-default.conf │ │ │ ├── supervisord-sagemaker-ui.conf │ │ │ └── supervisord.conf │ └── usr │ │ └── local │ │ └── bin │ │ ├── entrypoint-code-editor │ │ ├── entrypoint-jupyter-server │ │ ├── entrypoint-sagemaker-ui-code-editor │ │ ├── entrypoint-sagemaker-ui-jupyter-server │ │ ├── merge-settings-util.py │ │ ├── restart-jupyter-server │ │ ├── restart-sagemaker-ui-jupyter-server │ │ ├── start-code-editor │ │ ├── start-jupyter-server │ │ ├── start-sagemaker-ui-code-editor │ │ └── start-sagemaker-ui-jupyter-server │ ├── gpu.arg_based_env.in │ ├── gpu.env.in │ ├── gpu.env.out │ ├── gpu.pinned_env.in │ ├── patch_glue_pyspark.json │ ├── patch_glue_spark.json │ └── source-version.txt ├── environment.lock ├── environment.yml ├── pytest.ini ├── src ├── changelog_generator.py ├── config.py ├── dependency_upgrader.py ├── main.py ├── package_report.py ├── release_notes_generator.py ├── utils.py └── version_release_note_generator.py ├── support_policy.md ├── template ├── v0 │ └── Dockerfile ├── v1 │ ├── Dockerfile │ └── dirs │ │ ├── etc │ │ ├── code-editor │ │ │ ├── code_editor_machine_settings.json │ │ │ ├── code_editor_user_settings.json │ │ │ └── extensions.txt │ │ ├── conda │ │ │ └── .condarc │ │ ├── jupyter │ │ │ └── jupyter_server_config.py │ │ └── supervisor │ │ │ └── conf.d │ │ │ ├── supervisord-code-editor.conf │ │ │ ├── supervisord-common.conf │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ └── supervisord.conf │ │ └── usr │ │ └── local │ │ └── bin │ │ ├── entrypoint-code-editor │ │ ├── entrypoint-jupyter-server │ │ ├── restart-jupyter-server │ │ ├── start-code-editor │ │ └── start-jupyter-server ├── v2 │ ├── Dockerfile │ └── dirs │ │ ├── etc │ │ ├── code-editor │ │ │ ├── code_editor_machine_settings.json │ │ │ ├── code_editor_user_settings.json │ │ │ └── extensions.txt │ │ ├── conda │ │ │ └── .condarc │ │ ├── jupyter │ │ │ └── jupyter_server_config.py │ │ ├── patches │ │ │ ├── apply_patches.sh │ │ │ └── smus │ │ │ │ ├── 0001-sparkmagic.patch │ │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ │ └── 0004-fix-boto3-endpoints.patch │ │ ├── sagemaker-ui │ │ │ ├── git_clone.sh │ │ │ ├── git_config.sh │ │ │ ├── jupyter │ │ │ │ ├── lab │ │ │ │ │ └── settings │ │ │ │ │ │ ├── overrides.json │ │ │ │ │ │ └── page_config.json │ │ │ │ └── server │ │ │ │ │ └── jupyter_server_config.py │ │ │ ├── kernels │ │ │ │ ├── kernel_launchers │ │ │ │ │ └── python3_kernel_launcher.sh │ │ │ │ └── python3 │ │ │ │ │ └── kernel.json │ │ │ ├── libmgmt │ │ │ │ └── install-lib.sh │ │ │ ├── sagemaker_ui_post_startup.sh │ │ │ ├── set_code_editor_theme.sh │ │ │ └── workflows │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── healthcheck.sh │ │ │ │ ├── plugins │ │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ │ ├── requirements │ │ │ │ └── requirements.txt │ │ │ │ ├── sample_dag.py │ │ │ │ ├── sm-spark-cli-install.sh │ │ │ │ ├── sm_init_script.sh │ │ │ │ ├── start-workflows-container.sh │ │ │ │ ├── startup │ │ │ │ └── startup.sh │ │ │ │ ├── stop-workflows-container.sh │ │ │ │ └── workflow_client.py │ │ ├── sagemaker │ │ │ └── sm_pysdk_default_config.py │ │ └── supervisor │ │ │ └── conf.d │ │ │ ├── supervisord-code-editor.conf │ │ │ ├── supervisord-common.conf │ │ │ ├── supervisord-jupyter-lab.conf │ │ │ ├── supervisord-sagemaker-ui-code-editor.conf │ │ │ ├── supervisord-sagemaker-ui-default.conf │ │ │ ├── supervisord-sagemaker-ui.conf │ │ │ └── supervisord.conf │ │ └── usr │ │ └── local │ │ └── bin │ │ ├── entrypoint-code-editor │ │ ├── entrypoint-jupyter-server │ │ ├── entrypoint-sagemaker-ui-code-editor │ │ ├── entrypoint-sagemaker-ui-jupyter-server │ │ ├── merge-settings-util.py │ │ ├── restart-jupyter-server │ │ ├── restart-sagemaker-ui-jupyter-server │ │ ├── start-code-editor │ │ ├── start-jupyter-server │ │ ├── start-sagemaker-ui-code-editor │ │ └── start-sagemaker-ui-jupyter-server └── v3 │ ├── Dockerfile │ └── dirs │ ├── etc │ ├── code-editor │ │ ├── code_editor_machine_settings.json │ │ ├── code_editor_user_settings.json │ │ └── extensions.txt │ ├── conda │ │ └── .condarc │ ├── jupyter │ │ └── jupyter_server_config.py │ ├── patches │ │ ├── apply_patches.sh │ │ └── smus │ │ │ ├── 0001-sparkmagic.patch │ │ │ ├── 0002-sparkmagic-override-info-table.patch │ │ │ ├── 0003-fix-ipython-display.patch │ │ │ └── 0004-fix-boto3-endpoints.patch │ ├── sagemaker-inference-server │ │ ├── __init__.py │ │ ├── serve │ │ ├── serve.py │ │ ├── tornado_server │ │ │ ├── __init__.py │ │ │ ├── async_handler.py │ │ │ ├── server.py │ │ │ ├── stream_handler.py │ │ │ └── sync_handler.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── environment.py │ │ │ ├── exception.py │ │ │ └── logger.py │ ├── sagemaker-ui │ │ ├── git_clone.sh │ │ ├── git_config.sh │ │ ├── jupyter │ │ │ ├── lab │ │ │ │ └── settings │ │ │ │ │ ├── overrides.json │ │ │ │ │ └── page_config.json │ │ │ └── server │ │ │ │ └── jupyter_server_config.py │ │ ├── kernels │ │ │ ├── kernel_launchers │ │ │ │ └── python3_kernel_launcher.sh │ │ │ └── python3 │ │ │ │ └── kernel.json │ │ ├── libmgmt │ │ │ └── install-lib.sh │ │ ├── sagemaker_ui_post_startup.sh │ │ ├── set_code_editor_theme.sh │ │ └── workflows │ │ │ ├── docker-compose.yaml │ │ │ ├── healthcheck.sh │ │ │ ├── plugins │ │ │ ├── amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl │ │ │ └── amzn_sagemaker_studio-1.0.9-py3-none-any.whl │ │ │ ├── requirements │ │ │ └── requirements.txt │ │ │ ├── sample_dag.py │ │ │ ├── sm-spark-cli-install.sh │ │ │ ├── sm_init_script.sh │ │ │ ├── start-workflows-container.sh │ │ │ ├── startup │ │ │ └── startup.sh │ │ │ ├── stop-workflows-container.sh │ │ │ └── workflow_client.py │ ├── sagemaker │ │ └── sm_pysdk_default_config.py │ └── supervisor │ │ └── conf.d │ │ ├── supervisord-code-editor.conf │ │ ├── supervisord-common.conf │ │ ├── supervisord-jupyter-lab.conf │ │ ├── supervisord-sagemaker-ui-code-editor.conf │ │ ├── supervisord-sagemaker-ui-default.conf │ │ ├── supervisord-sagemaker-ui.conf │ │ └── supervisord.conf │ └── usr │ └── local │ └── bin │ ├── entrypoint-code-editor │ ├── entrypoint-jupyter-server │ ├── entrypoint-sagemaker-ui-code-editor │ ├── entrypoint-sagemaker-ui-jupyter-server │ ├── merge-settings-util.py │ ├── restart-jupyter-server │ ├── restart-sagemaker-ui-jupyter-server │ ├── start-code-editor │ ├── start-jupyter-server │ ├── start-sagemaker-ui-code-editor │ └── start-sagemaker-ui-jupyter-server └── test ├── conftest.py ├── test_artifacts ├── v0 │ ├── autogluon.test.Dockerfile │ ├── aws-glue-sessions │ │ ├── glue_notebook.ipynb │ │ ├── resource-metadata.json │ │ └── run_glue_sessions_notebook.sh │ ├── boto3.test.Dockerfile │ ├── glue-sessions.test.Dockerfile │ ├── gpu-dependencies.test.Dockerfile │ ├── keras.test.Dockerfile │ ├── matplotlib.test.Dockerfile │ ├── numpy.test.Dockerfile │ ├── pandas.test.Dockerfile │ ├── pytorch.examples.Dockerfile │ ├── run_pandas_tests.py │ ├── sagemaker-headless-execution-driver.test.Dockerfile │ ├── sagemaker-studio-analytics-extension.test.Dockerfile │ ├── sagemaker-studio-analytics-extension │ │ ├── sagemaker-studio-analytics-extension.sh │ │ └── sagemaker_studio_analytics_extension.ipynb │ ├── scipy.test.Dockerfile │ ├── scripts │ │ ├── cuda_validation.py │ │ ├── run_autogluon_tests.sh │ │ ├── run_boto3_tests.sh │ │ ├── run_keras_tests.sh │ │ ├── run_matplotlib_tests.sh │ │ └── run_pysdk_tests.sh │ ├── sm-python-sdk.test.Dockerfile │ ├── tensorflow.examples.Dockerfile │ └── tensorflow │ │ └── run_tensorflow_example_notebooks.sh ├── v1 │ ├── altair.test.Dockerfile │ ├── amazon-sagemaker-sql-magic.test.Dockerfile │ ├── amazon_sagemaker_sql_editor.test.Dockerfile │ ├── autogluon.test.Dockerfile │ ├── aws-glue-sessions │ │ ├── glue_notebook.ipynb │ │ ├── resource-metadata.json │ │ └── run_glue_sessions_notebook.sh │ ├── boto3.test.Dockerfile │ ├── glue-sessions.test.Dockerfile │ ├── gpu-dependencies.test.Dockerfile │ ├── jupyter-activity-monitor-extension.test.Dockerfile │ ├── jupyter-ai.test.Dockerfile │ ├── jupyter-collaboration.test.Dockerfile │ ├── jupyter-dash.test.Dockerfile │ ├── jupyterlab-git.test.Dockerfile │ ├── jupyterlab-lsp.test.Dockerfile │ ├── keras.test.Dockerfile │ ├── langchain-aws.test.Dockerfile │ ├── matplotlib.test.Dockerfile │ ├── mlflow.test.Dockerfile │ ├── notebook.test.Dockerfile │ ├── numpy.test.Dockerfile │ ├── pandas.test.Dockerfile │ ├── python-lsp-server.test.Dockerfile │ ├── pytorch.examples.Dockerfile │ ├── run_pandas_tests.py │ ├── sagemaker-code-editor.test.Dockerfile │ ├── sagemaker-headless-execution-driver.test.Dockerfile │ ├── sagemaker-mlflow.test.Dockerfile │ ├── sagemaker-studio-analytics-extension.test.Dockerfile │ ├── sagemaker-studio-analytics-extension │ │ ├── sagemaker-studio-analytics-extension.sh │ │ └── sagemaker_studio_analytics_extension.ipynb │ ├── scipy.test.Dockerfile │ ├── scripts │ │ ├── cuda_validation.py │ │ ├── run_altair_example_notebooks.sh │ │ ├── run_autogluon_tests.sh │ │ ├── run_boto3_tests.sh │ │ ├── run_keras_tests.sh │ │ ├── run_matplotlib_tests.sh │ │ ├── run_pysdk_tests.sh │ │ └── run_sagemaker_code_editor_tests.sh │ ├── serve.test.Dockerfile │ ├── sm-python-sdk.test.Dockerfile │ ├── tensorflow.examples.Dockerfile │ └── tensorflow │ │ └── run_tensorflow_example_notebooks.sh ├── v2 │ ├── altair.test.Dockerfile │ ├── amazon-codewhisperer-jupyterlab-ext.test.Dockerfile │ ├── amazon-q-developer-jupyterlab-ext.test.Dockerfile │ ├── amazon-sagemaker-jupyter-ai-q-developer.test.Dockerfile │ ├── amazon-sagemaker-sql-magic.test.Dockerfile │ ├── amazon_sagemaker_sql_editor.test.Dockerfile │ ├── anaconda.test.Dockerfile │ ├── autogluon.test.Dockerfile │ ├── aws-glue-sessions │ │ ├── glue_notebook.ipynb │ │ ├── resource-metadata.json │ │ └── run_glue_sessions_notebook.sh │ ├── boto3.test.Dockerfile │ ├── docker-cli.test.Dockerfile │ ├── fastapi.test.Dockerfile │ ├── glue-sessions.test.Dockerfile │ ├── gpu-dependencies.test.Dockerfile │ ├── ipywidgets.test.Dockerfile │ ├── jinja2.test.Dockerfile │ ├── jupyter-activity-monitor-extension.test.Dockerfile │ ├── jupyter-ai.test.Dockerfile │ ├── jupyter-collaboration.test.Dockerfile │ ├── jupyter-dash.test.Dockerfile │ ├── jupyter-scheduler.test.Dockerfile │ ├── jupyter-server-proxy.test.Dockerfile │ ├── jupyterlab-git.test.Dockerfile │ ├── jupyterlab-lsp.test.Dockerfile │ ├── keras.test.Dockerfile │ ├── langchain.test.Dockerfile │ ├── matplotlib.test.Dockerfile │ ├── mlflow.test.Dockerfile │ ├── notebook.test.Dockerfile │ ├── numpy.test.Dockerfile │ ├── pandas.test.Dockerfile │ ├── pyhive.test.Dockerfile │ ├── python-lsp-server.test.Dockerfile │ ├── pytorch.examples.Dockerfile │ ├── run_pandas_tests.py │ ├── s3fs.test.Dockerfile │ ├── sagemaker-code-editor.test.Dockerfile │ ├── sagemaker-headless-execution-driver.test.Dockerfile │ ├── sagemaker-mlflow.test.Dockerfile │ ├── sagemaker-recovery-mode.test.Dockerfile │ ├── sagemaker-studio-analytics-extension.test.Dockerfile │ ├── sagemaker-studio-analytics-extension │ │ ├── sagemaker-studio-analytics-extension.sh │ │ └── sagemaker_studio_analytics_extension.ipynb │ ├── sagemaker_studio.integ.Dockerfile │ ├── sagemaker_studio.test.Dockerfile │ ├── sagemaker_studio_cli.test.Dockerfile │ ├── sagemaker_studio_dataengineering_extensions.test.Dockerfile │ ├── sagemaker_studio_dataengineering_sessions.test.Dockerfile │ ├── sagemaker_workflows.test.Dockerfile │ ├── sagemaker_workflows_artifacts.test.Dockerfile │ ├── scikit-learn.test.Dockerfile │ ├── scipy.test.Dockerfile │ ├── scripts │ │ ├── cuda_validation.py │ │ ├── run_altair_example_notebooks.sh │ │ ├── run_anaconda_tests.sh │ │ ├── run_autogluon_tests.sh │ │ ├── run_boto3_tests.sh │ │ ├── run_docker_cli_tests.sh │ │ ├── run_fastapi_tests.sh │ │ ├── run_ipywidgets_tests.sh │ │ ├── run_jinja2_tests.sh │ │ ├── run_jupyter_collaboration_tests.sh │ │ ├── run_jupyter_scheduler_tests.sh │ │ ├── run_jupyter_server_proxy_tests.sh │ │ ├── run_jupyterlab_git_tests.sh │ │ ├── run_jupyterlab_lsp_tests.sh │ │ ├── run_keras_tests.sh │ │ ├── run_matplotlib_tests.sh │ │ ├── run_mlflow_tests.sh │ │ ├── run_notebook_tests.sh │ │ ├── run_pysdk_tests.sh │ │ ├── run_python_lsp_server_tests.sh │ │ ├── run_s3fs_tests.sh │ │ ├── run_sagemaker_code_editor_tests.sh │ │ ├── run_sagemaker_mlflow_tests.sh │ │ ├── run_sagemaker_studio_cli_test.sh │ │ ├── run_sagemaker_studio_dataengineering_sessions_test.sh │ │ ├── run_sagemaker_studio_test.sh │ │ ├── run_sagemaker_workflows_tests.sh │ │ ├── run_seaborn_tests.sh │ │ ├── run_sm_spark_cli_tests.sh │ │ ├── run_supervisor_tests.sh │ │ ├── run_torchvision_tests.sh │ │ ├── run_uvicorn_tests.sh │ │ └── run_xgboost_cpu_tests.sh │ ├── seaborn.test.Dockerfile │ ├── sm-python-sdk.test.Dockerfile │ ├── sm_spark_cli.test.Dockerfile │ ├── supervisor.test.Dockerfile │ ├── tensorflow.examples.Dockerfile │ ├── tensorflow │ │ └── run_tensorflow_example_notebooks.sh │ ├── tf-keras.test.Dockerfile │ ├── torchvision.test.Dockerfile │ ├── uvicorn.test.Dockerfile │ └── xgboost-cpu.test.Dockerfile └── v3 │ ├── altair.test.Dockerfile │ ├── amazon-codewhisperer-jupyterlab-ext.test.Dockerfile │ ├── amazon-q-developer-jupyterlab-ext.test.Dockerfile │ ├── amazon-sagemaker-jupyter-ai-q-developer.test.Dockerfile │ ├── amazon-sagemaker-sql-magic.test.Dockerfile │ ├── amazon_sagemaker_sql_editor.test.Dockerfile │ ├── anaconda.test.Dockerfile │ ├── autogluon.test.Dockerfile │ ├── aws-glue-sessions │ ├── glue_notebook.ipynb │ ├── resource-metadata.json │ └── run_glue_sessions_notebook.sh │ ├── boto3.test.Dockerfile │ ├── docker-cli.test.Dockerfile │ ├── fastapi.test.Dockerfile │ ├── glue-sessions.test.Dockerfile │ ├── gpu-dependencies.test.Dockerfile │ ├── ipywidgets.test.Dockerfile │ ├── jinja2.test.Dockerfile │ ├── jupyter-activity-monitor-extension.test.Dockerfile │ ├── jupyter-ai.test.Dockerfile │ ├── jupyter-collaboration.test.Dockerfile │ ├── jupyter-dash.test.Dockerfile │ ├── jupyter-scheduler.test.Dockerfile │ ├── jupyter-server-proxy.test.Dockerfile │ ├── jupyterlab-git.test.Dockerfile │ ├── jupyterlab-lsp.test.Dockerfile │ ├── keras.test.Dockerfile │ ├── langchain-aws.test.Dockerfile │ ├── langchain.test.Dockerfile │ ├── matplotlib.test.Dockerfile │ ├── mlflow.test.Dockerfile │ ├── notebook.test.Dockerfile │ ├── numpy.test.Dockerfile │ ├── pandas.test.Dockerfile │ ├── pyhive.test.Dockerfile │ ├── python-lsp-server.test.Dockerfile │ ├── pytorch.examples.Dockerfile │ ├── run_pandas_tests.py │ ├── s3fs.test.Dockerfile │ ├── sagemaker-code-editor.test.Dockerfile │ ├── sagemaker-headless-execution-driver.test.Dockerfile │ ├── sagemaker-mlflow.test.Dockerfile │ ├── sagemaker-recovery-mode.test.Dockerfile │ ├── sagemaker-studio-analytics-extension.test.Dockerfile │ ├── sagemaker-studio-analytics-extension │ ├── sagemaker-studio-analytics-extension.sh │ └── sagemaker_studio_analytics_extension.ipynb │ ├── scikit-learn.test.Dockerfile │ ├── scipy.test.Dockerfile │ ├── scripts │ ├── cuda_validation.py │ ├── run_altair_example_notebooks.sh │ ├── run_anaconda_tests.sh │ ├── run_autogluon_tests.sh │ ├── run_boto3_tests.sh │ ├── run_docker_cli_tests.sh │ ├── run_fastapi_tests.sh │ ├── run_ipywidgets_tests.sh │ ├── run_jinja2_tests.sh │ ├── run_jupyter_collaboration_tests.sh │ ├── run_jupyter_scheduler_tests.sh │ ├── run_jupyter_server_proxy_tests.sh │ ├── run_jupyterlab_git_tests.sh │ ├── run_jupyterlab_lsp_tests.sh │ ├── run_keras_tests.sh │ ├── run_matplotlib_tests.sh │ ├── run_mlflow_tests.sh │ ├── run_notebook_tests.sh │ ├── run_pysdk_tests.sh │ ├── run_python_lsp_server_tests.sh │ ├── run_s3fs_tests.sh │ ├── run_sagemaker_code_editor_tests.sh │ ├── run_sagemaker_mlflow_tests.sh │ ├── run_seaborn_tests.sh │ ├── run_supervisor_tests.sh │ ├── run_torchvision_tests.sh │ ├── run_uvicorn_tests.sh │ └── run_xgboost_cpu_tests.sh │ ├── seaborn.test.Dockerfile │ ├── sm-python-sdk.test.Dockerfile │ ├── supervisor.test.Dockerfile │ ├── tensorflow.examples.Dockerfile │ ├── tensorflow │ └── run_tensorflow_example_notebooks.sh │ ├── tf-keras.test.Dockerfile │ ├── torchvision.test.Dockerfile │ ├── uvicorn.test.Dockerfile │ └── xgboost-cpu.test.Dockerfile ├── test_dependency_upgrader.py ├── test_dockerfile_based_harness.py ├── test_main.py ├── test_nightly_build_helper.py ├── test_package_report.py └── test_version_release_generator.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Migrate code style to Black 2 | a74466c154d01201388f5232b167538275aa74c4 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @aws/sagemaker-distribution 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | contact_links: 2 | - name: Report a security vulnerability 3 | url: http://aws.amazon.com/security/vulnerability-reporting/ 4 | about: This issue tracker is not for security vulnerabilities. Please report issues here. 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | .DS_Store 4 | .vscode -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.0.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | ipython|8.12.1|8.12.2 8 | boto3|1.26.126|1.26.129 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.0.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | ipython|8.12.1|8.12.2 8 | boto3|1.26.126|1.26.129 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.0.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.0.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.129|1.26.138 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.0.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.129|1.26.137 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.0/v0.0.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.1.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyterlab|3.6.3|3.6.4 8 | boto3|1.26.138|1.26.148 9 | conda|23.3.1|23.5.0 10 | torchvision|0.15.1|0.15.2 11 | pandas|2.0.1|2.0.2 12 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.1.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyterlab|3.6.3|3.6.4 8 | boto3|1.26.137|1.26.148 9 | conda|23.3.1|23.5.0 10 | torchvision|0.15.1|0.15.2 11 | pandas|2.0.1|2.0.2 12 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.1.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.148|1.26.155 8 | python|3.8.16|3.8.17 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.1.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.148|1.26.155 8 | python|3.8.16|3.8.17 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.1.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.155|1.26.163 8 | numpy|1.24.3|1.24.4 9 | jupyterlab|3.6.4|3.6.5 10 | pandas|2.0.2|2.0.3 11 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.1.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.155|1.26.163 8 | numpy|1.24.3|1.24.4 9 | jupyterlab|3.6.4|3.6.5 10 | pandas|2.0.2|2.0.3 11 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.1/v0.1.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.1.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.10/v0.10.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.10/v0.10.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.10/v0.10.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.9.3 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.11/v0.11.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.11.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.33.7|1.34.11 8 | pip|23.3.1|23.3.2 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.11/v0.11.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.11.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.33.7|1.34.11 8 | pip|23.3.1|23.3.2 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.11/v0.11.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.11/v0.11.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.10.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.12/v0.12.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.12.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jinja2|3.1.2|3.1.3 8 | boto3|1.34.11|1.34.36 9 | jupyterlab|3.6.6|3.6.7 10 | sagemaker-python-sdk|2.198.0|2.206.0 11 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.12/v0.12.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.12.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jinja2|3.1.2|3.1.3 8 | boto3|1.34.11|1.34.36 9 | jupyterlab|3.6.6|3.6.7 10 | sagemaker-python-sdk|2.198.0|2.206.0 11 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.12/v0.12.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.12/v0.12.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.11.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.13/v0.13.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.13/v0.13.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.12.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.2.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.163|1.27.0 8 | ipywidgets|8.0.6|8.0.7 9 | scikit-learn|1.2.2|1.3.0 10 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.2.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.26.163|1.27.0 8 | ipywidgets|8.0.6|8.0.7 9 | scikit-learn|1.2.2|1.3.0 10 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.1.2 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.2.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.27.0|1.27.1 8 | matplotlib|3.7.1|3.7.2 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.2.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.27.0|1.27.1 8 | matplotlib|3.7.1|3.7.2 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.2.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.2.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | conda|23.5.0|23.5.2 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.2.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | conda|23.5.0|23.5.2 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.2/v0.2.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.2.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.3/v0.3.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.3.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.27.1|1.28.10 8 | keras|2.11.0|2.12.0 9 | pip|23.1.2|23.2.1 10 | tensorflow|2.11.1|2.12.1 11 | 12 | ## What's new: 13 | 14 | Package | Version 15 | ---|--- 16 | sagemaker-python-sdk|2.173.0 17 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.3/v0.3.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.3.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.27.1|1.28.10 8 | keras|2.11.0|2.12.0 9 | pip|23.1.2|23.2.1 10 | tensorflow|2.11.1|2.12.1 11 | 12 | ## What's new: 13 | 14 | Package | Version 15 | ---|--- 16 | sagemaker-python-sdk|2.173.0 17 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.3/v0.3.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.3/v0.3.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.2.2 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.10|1.28.16 8 | conda|23.5.2|23.7.2 9 | ipywidgets|8.0.7|8.1.0 10 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.10|1.28.16 8 | conda|23.5.2|23.7.2 9 | ipywidgets|8.0.7|8.1.0 10 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.3.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.16|1.28.20 8 | py-xgboost-cpu|1.7.4|1.7.6 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.16|1.28.20 8 | py-xgboost-gpu|1.7.4|1.7.6 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.4.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.20|1.28.25 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.20|1.28.25 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.4.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.3/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.3(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.25|1.28.30 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.3/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.3(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.25|1.28.30 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.4.2 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.4/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.4(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.30|1.28.35 8 | conda|23.7.2|23.7.3 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.4/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.4.4(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.30|1.28.35 8 | conda|23.7.2|23.7.3 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.4/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.4/v0.4.4/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.4.3 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.5.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.35|1.28.40 8 | sagemaker-python-sdk|2.173.0|2.183.0 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.5.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.35|1.28.40 8 | sagemaker-python-sdk|2.173.0|2.183.0 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.4.4 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.5.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.40|1.28.44 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.5.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.40|1.28.44 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.5/v0.5.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.5.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.6/v0.6.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.6/v0.6.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.5.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.7.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.49|1.28.52 8 | matplotlib|3.7.2|3.7.3 9 | scikit-learn|1.3.0|1.3.1 10 | sagemaker-python-sdk|2.186.0|2.187.0 11 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.7.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.49|1.28.52 8 | matplotlib|3.7.2|3.7.3 9 | scikit-learn|1.3.0|1.3.1 10 | sagemaker-python-sdk|2.186.0|2.187.0 11 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.6.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.7.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.52|1.28.58 8 | jupyterlab|3.6.5|3.6.6 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.7.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.52|1.28.58 8 | jupyterlab|3.6.5|3.6.6 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.7/v0.7.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.7.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.8.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.58|1.28.59 8 | conda|23.7.4|23.9.0 9 | sagemaker-python-sdk|2.187.0|2.189.0 10 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.8.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.58|1.28.59 8 | conda|23.7.4|23.9.0 9 | sagemaker-python-sdk|2.187.0|2.189.0 10 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.7.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.8.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.59|1.28.62 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.8.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.59|1.28.62 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.8.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.8.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | python|3.8.17|3.8.18 8 | boto3|1.28.62|1.28.63 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.8.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | python|3.8.17|3.8.18 8 | boto3|1.28.62|1.28.63 9 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.8/v0.8.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.8.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.8.2 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.9.1(cpu) 2 | 3 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.9.1(gpu) 2 | 3 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.9.0 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.9.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.76|1.28.85 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.9.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | boto3|1.28.76|1.28.85 8 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.9.1 -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.3/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.9.3(cpu) 2 | 3 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.3/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 0.9.3(gpu) 2 | 3 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v0/v0.9/v0.9.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 0.9.2 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.0/v1.0.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.0/v1.0.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.1/v1.1.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.1/v1.1.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.1/v1.1.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.0/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.9.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.1/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.10/v1.10.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.10.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.11/v1.11.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.11.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | altair|5.3.0|5.4.1 8 | ipython|8.26.0|8.27.0 9 | jupyter-ai|2.20.0|2.23.0 10 | jupyter-server-proxy|4.3.0|4.4.0 11 | python-lsp-server|1.11.0|1.12.0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.11/v1.11.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.11.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | altair|5.3.0|5.4.1 8 | ipython|8.26.0|8.27.0 9 | jupyter-ai|2.20.0|2.23.0 10 | jupyter-server-proxy|4.3.0|4.4.0 11 | python-lsp-server|1.11.0|1.12.0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.11/v1.11.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.11/v1.11.0/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.11/v1.11.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.11/v1.11.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.11/v1.11.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.10.1 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.0/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.11.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.1/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.12.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.12.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon_sagemaker_sql_editor|0.1.14|0.1.15 8 | python-lsp-server|1.12.0|1.12.2 9 | sagemaker-kernel-wrapper|0.0.4|0.0.5 10 | sagemaker-studio-analytics-extension|0.1.4|0.1.5 11 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.12.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon_sagemaker_sql_editor|0.1.14|0.1.15 8 | python-lsp-server|1.12.0|1.12.2 9 | sagemaker-kernel-wrapper|0.0.4|0.0.5 10 | sagemaker-studio-analytics-extension|0.1.4|0.1.5 11 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::pyarrow-hotfix[version='>=0.6,<0.7.0'] 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.12.1 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::pyarrow-hotfix[version='>=0.6,<0.7.0'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.12.2 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::pyarrow-hotfix[version='>=0.6,<0.7.0'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.12/v1.12.4/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.12.3 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.13.0(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | sagemaker-jupyterlab-extension|0.3.3|0.4.0 8 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.13.0(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jinja2|3.1.5|3.1.6 8 | sagemaker-jupyterlab-extension|0.3.3|0.4.0 9 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::pyarrow-hotfix[version='>=0.6,<0.7.0'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.12.3 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::pyarrow-hotfix[version='>=0.6,<0.7.0'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.13/v1.13.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.13.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.2/v1.2.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.2/v1.2.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.2/v1.2.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.1.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.2/v1.2.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.2/v1.2.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.2/v1.2.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.2.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.3/v1.3.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.3/v1.3.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.3/v1.3.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.2.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.3/v1.3.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.3/v1.3.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.3/v1.3.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.3.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.0/cpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::langchain[version='>=0.0.352,<1'] 2 | conda-forge::fastapi[version='>=0.105.0,<1'] 3 | conda-forge::uvicorn[version='>=0.25.0,<1'] -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.0/gpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::langchain[version='>=0.0.352,<1'] 2 | conda-forge::fastapi[version='>=0.105.0,<1'] 3 | conda-forge::uvicorn[version='>=0.25.0,<1'] -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.3.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.4.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jinja2|3.1.2|3.1.3 8 | jupyter-lsp|2.2.1|2.2.2 9 | jupyterlab|4.0.10|4.0.11 10 | notebook|7.0.6|7.0.7 11 | jupyterlab-lsp|5.0.1|5.0.2 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.4.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jinja2|3.1.2|3.1.3 8 | jupyter-lsp|2.2.1|2.2.2 9 | jupyterlab|4.0.10|4.0.11 10 | notebook|7.0.6|7.0.7 11 | jupyterlab-lsp|5.0.1|5.0.2 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.4.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.4.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-sagemaker-jupyter-scheduler|3.0.5|3.0.6 8 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.4.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-sagemaker-jupyter-scheduler|3.0.5|3.0.6 8 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.4.1 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.3/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.4.3(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyterlab|4.0.11|4.0.12 8 | sagemaker-python-sdk|2.198.0|2.198.1 9 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.3/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.4.3(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyterlab|4.0.11|4.0.12 8 | sagemaker-python-sdk|2.198.0|2.198.1 9 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.4.2 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.4/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.4/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.4/v1.4.4/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.4.3 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.4.3 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.5.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyterlab|4.1.0|4.1.1 8 | amazon-sagemaker-jupyter-scheduler|3.0.6|3.0.7 9 | ipywidgets|8.1.1|8.1.2 10 | langchain|0.1.5|0.1.6 11 | uvicorn|0.27.0|0.27.1 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.5.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyterlab|4.1.0|4.1.1 8 | amazon-sagemaker-jupyter-scheduler|3.0.6|3.0.7 9 | ipywidgets|8.1.1|8.1.2 10 | langchain|0.1.5|0.1.6 11 | uvicorn|0.27.0|0.27.1 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.5.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.5.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyter-lsp|2.2.2|2.2.3 8 | jupyterlab|4.1.1|4.1.2 9 | jupyter-scheduler|2.5.0|2.5.1 10 | scikit-learn|1.4.0|1.4.1.post1 11 | notebook|7.0.7|7.1.1 12 | langchain|0.1.6|0.1.9 13 | matplotlib|3.8.2|3.8.3 14 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.5.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyter-lsp|2.2.2|2.2.3 8 | jupyterlab|4.1.1|4.1.2 9 | jupyter-scheduler|2.5.0|2.5.1 10 | scikit-learn|1.4.0|1.4.1.post1 11 | notebook|7.0.7|7.1.1 12 | langchain|0.1.6|0.1.9 13 | matplotlib|3.8.2|3.8.3 14 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.5.1 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.5/v1.5.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.5.2 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/cpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::sagemaker-code-editor[version='>=1.0.0'] 2 | conda-forge::amazon_sagemaker_sql_editor[version='>=0.1.0,<2'] 3 | conda-forge::amazon-sagemaker-sql-magic[version='>=0.1.0,<2'] 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/gpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::sagemaker-code-editor[version='>=1.0.0'] 2 | conda-forge::amazon_sagemaker_sql_editor[version='>=0.1.0,<2'] 3 | conda-forge::amazon-sagemaker-sql-magic[version='>=0.1.0,<2'] 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.5.2 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.6.1(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | python|3.10.13|3.10.14 8 | jupyterlab|4.1.4|4.1.5 9 | notebook|7.1.1|7.1.2 10 | uvicorn|0.28.0|0.28.1 11 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.6.1(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | jupyterlab|4.1.4|4.1.5 8 | notebook|7.1.1|7.1.2 9 | uvicorn|0.28.0|0.28.1 10 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.6.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.6.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-sagemaker-sql-magic|0.1.0|0.1.1 8 | amazon_sagemaker_sql_editor|0.1.3|0.1.4 9 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 1.6.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | python|3.10.13|3.10.14 8 | amazon-sagemaker-sql-magic|0.1.0|0.1.1 9 | amazon_sagemaker_sql_editor|0.1.3|0.1.4 10 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.6.1 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.3/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.3/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.3/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.6/v1.6.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.6.2 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/cpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::jupyter-collaboration[version='>=1.1.0'] 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/gpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::jupyter-collaboration[version='>=1.1.0'] 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.6.2 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.1/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.1/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.7.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.2/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2023.9.100/file/ms-toolsai.jupyter-2023.9.100.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.2/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.7/v1.7.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.7.1 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.8/v1.8.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.8/v1.8.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.8/v1.8.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.8/v1.8.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.7.1 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.0/cpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::langchain-aws[version='>=0.1.1,<0.2.0'] 2 | conda-forge::amazon-sagemaker-jupyter-ai-q-developer[version='>=1.0.3,<2.0'] 3 | conda-forge::amazon-q-developer-jupyterlab-ext[version='>=3.1.0,<4.0'] 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.0/gpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::langchain-aws[version='>=0.1.1,<0.2.0'] 2 | conda-forge::amazon-sagemaker-jupyter-ai-q-developer[version='>=1.0.3,<2.0'] 3 | conda-forge::amazon-q-developer-jupyterlab-ext[version='>=3.1.0,<4.0'] 4 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.8.0 -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cudatoolkit=$CUDA_MAJOR_MINOR_VERSION 2 | -------------------------------------------------------------------------------- /build_artifacts/v1/v1.9/v1.9.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.9.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.0/cpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | #Add any additional packages here 2 | conda-forge::mlflow[version='>=2.13.2,<3.0'] 3 | conda-forge::sagemaker-mlflow[version='>=0.1.0,<1.0'] 4 | conda-forge::jupyter-activity-monitor-extension[version'>=0.1.0,<1.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.0/gpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | #Add any additional packages here 2 | conda-forge::mlflow[version='>=2.13.2,<3.0'] 3 | conda-forge::sagemaker-mlflow[version='>=0.1.0,<1.0'] 4 | conda-forge::jupyter-activity-monitor-extension[version'>=0.1.0,<1.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 1.9.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.0/v2.0.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.1.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.2/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 5 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.2/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.2/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.1.1 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 2.1.3(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-q-developer-jupyterlab-ext|3.4.6|3.4.7 8 | amazon-sagemaker-jupyter-ai-q-developer|1.0.16|1.0.17 9 | amazon-sagemaker-jupyter-scheduler|3.1.9|3.1.10 10 | fastapi|0.115.8|0.115.11 11 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 2.1.3(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-q-developer-jupyterlab-ext|3.4.6|3.4.7 8 | amazon-sagemaker-jupyter-ai-q-developer|1.0.16|1.0.17 9 | amazon-sagemaker-jupyter-scheduler|3.1.9|3.1.10 10 | fastapi|0.115.8|0.115.11 11 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 5 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 6 | conda-forge::libsqlite[version='<3.49.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.1.2 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.4/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.4/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.4/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.4/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.4/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.1/v2.1.4/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.1.3 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.0/cpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | #Add any additional packages here 2 | conda-forge::docker-cli[version='>=27.1.1'] -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.0/gpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | #Add any additional packages here 2 | conda-forge::docker-cli[version='>=27.1.1'] -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.1.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.2.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.2/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.2.1 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.3/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.3/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.3/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.3/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 4 | conda-forge::evaluate[version='<0.4.2'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.2.2 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 2.2.4(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-q-developer-jupyterlab-ext|3.4.6|3.4.7 8 | amazon-sagemaker-jupyter-ai-q-developer|1.0.16|1.0.17 9 | amazon-sagemaker-jupyter-scheduler|3.1.9|3.1.10 10 | fastapi|0.115.8|0.115.11 11 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 2.2.4(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-q-developer-jupyterlab-ext|3.4.6|3.4.7 8 | amazon-sagemaker-jupyter-ai-q-developer|1.0.16|1.0.17 9 | amazon-sagemaker-jupyter-scheduler|3.1.9|3.1.10 10 | fastapi|0.115.8|0.115.11 11 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 6 | conda-forge::libsqlite[version='<3.49.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 4 | conda-forge::evaluate[version='<0.4.2'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.4/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.2.3 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.5/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.5/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.5/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.5/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.5/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 4 | conda-forge::evaluate[version='<0.4.2'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.2/v2.2.5/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.2.4 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.0/cpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::s3fs 2 | conda-forge::seaborn 3 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.0/gpu.additional_packages_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::s3fs 2 | conda-forge::seaborn 3 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.2.1 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.3.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.2/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 5 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.2/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.2/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.3.1 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.3/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 5 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 6 | conda-forge::libsqlite[version='<3.49.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.3/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.3/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.3/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.3.2 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.4/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.4/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.4/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.4/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.4/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.3/v2.3.4/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.3.3 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.0/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 5 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.3.1 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.1/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 5 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 6 | conda-forge::libsqlite[version='<3.49.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.1/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.4.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.2/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.2/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.4.1 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 2.4.3(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-q-developer-jupyterlab-ext|3.4.7|3.4.8 8 | langchain|0.3.23|0.3.24 9 | uvicorn|0.34.0|0.34.2 10 | sagemaker-code-editor|1.4.2|1.4.3 11 | sagemaker-studio-analytics-extension|0.1.6|0.1.7 12 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 2.4.3(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | amazon-q-developer-jupyterlab-ext|3.4.7|3.4.8 8 | langchain|0.3.23|0.3.24 9 | uvicorn|0.34.0|0.34.2 10 | sagemaker-code-editor|1.4.2|1.4.3 11 | sagemaker-studio-analytics-extension|0.1.6|0.1.7 12 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.4/v2.4.3/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.4.2 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.5/v2.5.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.5/v2.5.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | 7 | 8 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::sentencepiece[version='>=0.1.99,<0.2.0'] 5 | conda-forge::libsqlite[version='<3.49.0'] 6 | conda-forge::urllib3[version='<2'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.5/v2.5.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.4.1 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.6/v2.6.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.6/v2.6.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | 7 | 8 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::urllib3[version='<2'] 6 | conda-forge::papermill[version='>=2.6.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.5.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.6/v2.6.1/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.6/v2.6.1/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | 7 | 8 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.5.39 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.10.0.4 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::urllib3[version='<2'] 6 | conda-forge::papermill[version='>=2.6.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.6/v2.6.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.6.0 -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.7/v2.7.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v2/v2.7/v2.7.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | 7 | 8 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.6.77.* 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.11.1.6.* -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<1.6.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::urllib3[version='<2'] 6 | conda-forge::papermill[version='>=2.6.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v2/v2.7/v2.7.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.6.0 -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<2.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 5 | conda-forge::libsqlite[version='<3.49.0'] -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/dirs/etc/sagemaker-inference-server/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import utils.logger 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/dirs/etc/sagemaker-inference-server/serve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python /etc/sagemaker-inference-server/serve.py 3 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/dirs/etc/sagemaker-inference-server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.6.77.* 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.11.1.6.* -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::libmamba[version='>=1.5.11,<2.0'] 2 | conda-forge::dash[version='<=2.18.1'] 3 | conda-forge::evaluate[version='<0.4.2'] 4 | conda-forge::libsqlite[version='<3.49.0'] -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 2.4.1 -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/dirs/etc/sagemaker-inference-server/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import utils.logger 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/dirs/etc/sagemaker-inference-server/serve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python /etc/sagemaker-inference-server/serve.py 3 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/dirs/etc/sagemaker-inference-server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.6.77.* 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.11.1.6.* -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::libsqlite[version='<3.49.0'] 4 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.1/source-version.txt: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/CHANGELOG-cpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 3.0.2(cpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | matplotlib-base|3.10.1|3.10.3 8 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/CHANGELOG-gpu.md: -------------------------------------------------------------------------------- 1 | # Change log: 3.0.2(gpu) 2 | 3 | ## Upgrades: 4 | 5 | Package | Previous Version | Current Version 6 | ---|---|--- 7 | matplotlib-base|3.10.1|3.10.3 8 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/dirs/etc/sagemaker-inference-server/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import utils.logger 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/dirs/etc/sagemaker-inference-server/serve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python /etc/sagemaker-inference-server/serve.py 3 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/dirs/etc/sagemaker-inference-server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.6.77.* 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.11.1.6.* -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::libsqlite[version='<3.49.0'] 4 | conda-forge::sagemaker-jupyterlab-extension-common[version='<0.2.0'] 5 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.0/v3.0.2/source-version.txt: -------------------------------------------------------------------------------- 1 | 3.0.1 -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::urllib3[version='<2'] 6 | conda-forge::papermill[version='>=2.6.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-inference-server/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import utils.logger 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-inference-server/serve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python /etc/sagemaker-inference-server/serve.py 3 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-inference-server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.6.77.* 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.11.1.6.* -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::libsqlite[version='<3.49.0'] 4 | conda-forge::urllib3[version='<2'] 5 | conda-forge::papermill[version='>=2.6.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.1/v3.1.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/cpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::catboost[version='>=1.1.1,<1.3.0',build='*cpu*'] 4 | conda-forge::libsqlite[version='<3.49.0'] 5 | conda-forge::urllib3[version='<2'] 6 | conda-forge::papermill[version='>=2.6.0'] 7 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-inference-server/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import utils.logger 4 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-inference-server/serve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python /etc/sagemaker-inference-server/serve.py 3 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-inference-server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/gpu.arg_based_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::cuda-compiler=$CUDA_MAJOR_MINOR_VERSION 2 | conda-forge::cuda-libraries=$CUDA_MAJOR_MINOR_VERSION 3 | conda-forge::cuda-libraries-dev=$CUDA_MAJOR_MINOR_VERSION 4 | conda-forge::cuda-nvml-dev=12.6.77.* 5 | conda-forge::cuda-command-line-tools=$CUDA_MAJOR_MINOR_VERSION 6 | conda-forge::gds-tools=1.11.1.6.* -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/gpu.pinned_env.in: -------------------------------------------------------------------------------- 1 | conda-forge::dash[version='<=2.18.1'] 2 | conda-forge::evaluate[version='<0.4.2'] 3 | conda-forge::libsqlite[version='<3.49.0'] 4 | conda-forge::urllib3[version='<2'] 5 | conda-forge::papermill[version='>=2.6.0'] 6 | -------------------------------------------------------------------------------- /build_artifacts/v3/v3.2/v3.2.0/source-version.txt: -------------------------------------------------------------------------------- 1 | 3.1.0 -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | markers = 3 | gpu: For running tests on GPU docker images to verify package installations. 4 | cpu: For running tests on CPU docker images to verify package installations. 5 | unit: For running unit tests 6 | pythonpath = src/ 7 | -------------------------------------------------------------------------------- /template/v1/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /template/v1/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /template/v1/dirs/etc/code-editor/extensions.txt: -------------------------------------------------------------------------------- 1 | https://open-vsx.org/api/ms-toolsai/jupyter/2024.5.0/file/ms-toolsai.jupyter-2024.5.0.vsix 2 | https://open-vsx.org/api/ms-python/python/2023.20.0/file/ms-python.python-2023.20.0.vsix 3 | https://open-vsx.org/api/amazonwebservices/aws-toolkit-vscode/1.99.0/file/amazonwebservices.aws-toolkit-vscode-1.99.0.vsix 4 | -------------------------------------------------------------------------------- /template/v1/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /template/v1/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /template/v2/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /template/v2/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /template/v2/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /template/v2/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /template/v2/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/template/v2/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /template/v2/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/template/v2/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /template/v2/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | 7 | 8 | -------------------------------------------------------------------------------- /template/v2/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | -------------------------------------------------------------------------------- /template/v2/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/code-editor/code_editor_machine_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.terminal.activateEnvironment": false, 3 | "python.defaultInterpreterPath": "/opt/conda/bin/python" 4 | } 5 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/code-editor/code_editor_user_settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensions.autoUpdate": false 3 | } 4 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/conda/.condarc: -------------------------------------------------------------------------------- 1 | envs_dirs: 2 | - ~/.conda/envs 3 | - /opt/conda/envs 4 | pkgs_dirs: 5 | - ~/.conda/pkgs 6 | - /opt/conda/pkgs 7 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-inference-server/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import utils.logger 4 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-inference-server/serve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python /etc/sagemaker-inference-server/serve.py 3 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-inference-server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-ui/jupyter/lab/settings/overrides.json: -------------------------------------------------------------------------------- 1 | { 2 | "@jupyterlab/apputils-extension:themes": { 3 | "theme": "Amazon SageMaker Unified Studio Dark" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/template/v3/dirs/etc/sagemaker-ui/workflows/plugins/amzn_SagemakerWorkflowsOperator-1.0-py3-none-any.whl -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/sagemaker-distribution/4e62b86a9b6fc0daa5e98fbb46ac9a8254c623f5/template/v3/dirs/etc/sagemaker-ui/workflows/plugins/amzn_sagemaker_studio-1.0.9-py3-none-any.whl -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-ui/workflows/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | --find-links /usr/local/airflow/plugins 2 | --no-index 3 | 4 | amzn_sagemaker_studio 5 | amzn_SagemakerWorkflowsOperator 6 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/sagemaker-ui/workflows/startup/startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /template/v3/dirs/etc/supervisor/conf.d/supervisord-jupyter-lab.conf: -------------------------------------------------------------------------------- 1 | [include] 2 | files = supervisord-common.conf 3 | 4 | [program:jupyterlabserver] 5 | directory=%(ENV_HOME)s 6 | command=start-jupyter-server 7 | stopasgroup=true 8 | stdout_logfile=/dev/stdout 9 | stdout_logfile_maxbytes=0 10 | stderr_logfile=/dev/stderr 11 | stderr_logfile_maxbytes=0 12 | -------------------------------------------------------------------------------- /test/test_artifacts/v0/aws-glue-sessions/resource-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "ResourceArn": "NotebookInstanceArn", 3 | "ResourceName": "NotebookInstanceName" 4 | } -------------------------------------------------------------------------------- /test/test_artifacts/v0/aws-glue-sessions/run_glue_sessions_notebook.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Create an empty notebook file for papermill's output 4 | touch nb_output.ipynb 5 | 6 | kernels=('glue_pyspark' 'glue_spark') 7 | nb='script' 8 | for kernel in ${kernels[@]}; do 9 | papermill 'glue_notebook.ipynb' 'nb_output.ipynb' -k $kernel 10 | done 11 | -------------------------------------------------------------------------------- /test/test_artifacts/v0/pandas.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | RUN pip install pandas[test] 6 | 7 | COPY --chown=$MAMBA_USER:$MAMBA_USER run_pandas_tests.py . 8 | CMD ["python", "run_pandas_tests.py"] 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v0/sagemaker-studio-analytics-extension/sagemaker-studio-analytics-extension.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | papermill 'sagemaker_studio_analytics_extension.ipynb' 'nb_output.ipynb' 3 | -------------------------------------------------------------------------------- /test/test_artifacts/v0/scripts/run_matplotlib_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Run all the tutorials 3 | for file in *.py; do 4 | python "$file" || exit $? 5 | done 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/amazon-sagemaker-sql-magic.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_sql_magic"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/amazon_sagemaker_sql_editor.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_sql_editor"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/aws-glue-sessions/resource-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "ResourceArn": "NotebookInstanceArn", 3 | "ResourceName": "NotebookInstanceName" 4 | } -------------------------------------------------------------------------------- /test/test_artifacts/v1/aws-glue-sessions/run_glue_sessions_notebook.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Create an empty notebook file for papermill's output 4 | touch nb_output.ipynb 5 | 6 | kernels=('glue_pyspark' 'glue_spark') 7 | nb='script' 8 | for kernel in ${kernels[@]}; do 9 | papermill 'glue_notebook.ipynb' 'nb_output.ipynb' -k $kernel 10 | done 11 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/jupyter-ai.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import jupyter_ai"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/jupyter-dash.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import plotly.express as px; import sys; fig = px.bar(x=['a', 'b', 'c'], y=[1, 3, 2]); fig.write_html('first_figure.html', auto_open=False)"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/jupyterlab-git.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import jupyterlab_git"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/jupyterlab-lsp.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import jupyter_lsp"] 7 | CMD ["python", "-c", "import jupyterlab_lsp"] 8 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/notebook.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import notebook"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/pandas.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | RUN micromamba install -y --freeze-installed -c conda-forge pytest hypothesis pytest-asyncio lxml 6 | 7 | COPY --chown=$MAMBA_USER:$MAMBA_USER run_pandas_tests.py . 8 | CMD ["python", "run_pandas_tests.py"] 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/python-lsp-server.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | # "Confirm that installation succeeded" by running this - https://github.com/python-lsp/python-lsp-server#installation 7 | CMD ["pylsp", "--help"] 8 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/sagemaker-headless-execution-driver.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | # Execute the unit tests for sagemaker-headless-execution-driver 7 | CMD ["python", "-c", "import sagemaker_headless_execution_driver.headless_execution as execution_driver"] 8 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/sagemaker-studio-analytics-extension/sagemaker-studio-analytics-extension.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | papermill 'sagemaker_studio_analytics_extension.ipynb' 'nb_output.ipynb' 3 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/scripts/run_matplotlib_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Run all the tutorials 3 | for file in *.py; do 4 | python "$file" || exit $? 5 | done 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v1/serve.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import fastapi, uvicorn, langchain"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/amazon-codewhisperer-jupyterlab-ext.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_codewhisperer_jupyterlab_ext"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/amazon-q-developer-jupyterlab-ext.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_q_developer_jupyterlab_ext"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/amazon-sagemaker-jupyter-ai-q-developer.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_jupyter_ai_q_developer"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/amazon-sagemaker-sql-magic.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_sql_magic"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/amazon_sagemaker_sql_editor.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_sql_editor"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/anaconda.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_anaconda_tests.sh . 7 | RUN chmod +x run_anaconda_tests.sh 8 | CMD ["./run_anaconda_tests.sh"] -------------------------------------------------------------------------------- /test/test_artifacts/v2/aws-glue-sessions/resource-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "ResourceArn": "NotebookInstanceArn", 3 | "ResourceName": "NotebookInstanceName" 4 | } -------------------------------------------------------------------------------- /test/test_artifacts/v2/aws-glue-sessions/run_glue_sessions_notebook.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Create an empty notebook file for papermill's output 4 | touch nb_output.ipynb 5 | 6 | kernels=('glue_pyspark' 'glue_spark') 7 | nb='script' 8 | for kernel in ${kernels[@]}; do 9 | papermill 'glue_notebook.ipynb' 'nb_output.ipynb' -k $kernel 10 | done 11 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/docker-cli.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_docker_cli_tests.sh ./ 7 | RUN chmod +x run_docker_cli_tests.sh 8 | 9 | CMD ["./run_docker_cli_tests.sh"] -------------------------------------------------------------------------------- /test/test_artifacts/v2/jupyter-ai.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import jupyter_ai"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/jupyter-dash.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import plotly.express as px; import sys; fig = px.bar(x=['a', 'b', 'c'], y=[1, 3, 2]); fig.write_html('first_figure.html', auto_open=False)"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/jupyterlab-lsp.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_jupyterlab_lsp_tests.sh ./ 7 | RUN chmod +x run_jupyterlab_lsp_tests.sh 8 | 9 | CMD ["./run_jupyterlab_lsp_tests.sh"] 10 | 11 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/pandas.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | RUN micromamba install -y --freeze-installed -c conda-forge pytest hypothesis pytest-asyncio lxml 6 | 7 | COPY --chown=$MAMBA_USER:$MAMBA_USER run_pandas_tests.py . 8 | CMD ["python", "run_pandas_tests.py"] 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/sagemaker-headless-execution-driver.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | # Execute the unit tests for sagemaker-headless-execution-driver 7 | CMD ["python", "-c", "import sagemaker_headless_execution_driver.headless_execution as execution_driver"] 8 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/sagemaker-recovery-mode.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | ENV SAGEMAKER_RECOVERY_MODE=true 7 | 8 | ENTRYPOINT ["/usr/local/bin/entrypoint-jupyter-server"] 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/sagemaker-studio-analytics-extension/sagemaker-studio-analytics-extension.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | papermill 'sagemaker_studio_analytics_extension.ipynb' 'nb_output.ipynb' 3 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/sagemaker_studio.integ.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | 7 | CMD ["python", "-c", "import sagemaker_studio; from sagemaker_studio import Project, Domain, ClientConfig;"] -------------------------------------------------------------------------------- /test/test_artifacts/v2/sagemaker_studio.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_sagemaker_studio_test.sh . 7 | RUN chmod +x run_sagemaker_studio_test.sh 8 | CMD ["./run_sagemaker_studio_test.sh"] -------------------------------------------------------------------------------- /test/test_artifacts/v2/sagemaker_studio_cli.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_sagemaker_studio_cli_test.sh . 7 | RUN chmod +x run_sagemaker_studio_cli_test.sh 8 | CMD ["./run_sagemaker_studio_cli_test.sh"] -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_fastapi_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | fastapi_version=$(micromamba list | grep fastapi | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$fastapi_version 6 | 7 | pip install -r requirements-tests.txt 8 | 9 | pytest tests/ -v -k "not test_tutorial" 10 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_ipywidgets_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | jupyter nbconvert --execute --to python tests/test_borders.ipynb 4 | jupyter nbconvert --execute --to python tests/test_sanitizer.ipynb 5 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_jupyter_collaboration_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip install ".[test]" 4 | 5 | pytest tests/ -v 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_jupyterlab_git_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | jupyter_git_version=$(micromamba list | grep jupyter-git | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$jupyter_git_version 6 | 7 | pip install ".[test]" 8 | 9 | pytest -v jupyterlab_git/tests/ 10 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_matplotlib_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Run all the tutorials 3 | for file in *.py; do 4 | python "$file" || exit $? 5 | done 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_notebook_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | notebook_version=$(micromamba list | grep notebook | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$notebook_version 6 | 7 | pip install ".[test]" 8 | 9 | pytest tests/ -v -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_sagemaker_mlflow_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | pytest -s -rA -vv test/unit 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_sagemaker_studio_cli_test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip install pytest 4 | SITE_PACKAGES=$(pip show sagemaker-studio-cli | grep Location | awk '{print $2}') 5 | pytest -vv -r p $SITE_PACKAGES/sagemaker_studio_cli || exit $? -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_sagemaker_studio_test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip install pytest 4 | SITE_PACKAGES=$(pip show sagemaker-studio | grep Location | awk '{print $2}') 5 | pytest -vv -r p $SITE_PACKAGES/sagemaker_studio || exit $? -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_sm_spark_cli_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Check if sm-spark-cli is installed 4 | if command -v sm-spark-cli >/dev/null 2>&1; then 5 | echo "sm-spark-cli is installed." 6 | exit 0 7 | else 8 | echo "Error: sm-spark-cli is not installed." >&2 9 | exit 1 10 | fi -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_supervisor_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | supervisor_version=$(micromamba list | grep supervisor | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$supervisor_version 6 | 7 | pytest -v supervisor/tests/ 8 | 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/scripts/run_uvicorn_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | uvicorn_version=$(micromamba list | grep uvicorn | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$uvicorn_version 6 | 7 | pip install -r requirements.txt 8 | 9 | pytest tests -v -k "not test_main.py" 10 | -------------------------------------------------------------------------------- /test/test_artifacts/v2/sm_spark_cli.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_sm_spark_cli_tests.sh . 7 | RUN chmod +x run_sm_spark_cli_tests.sh 8 | CMD ["./run_sm_spark_cli_tests.sh"] 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/amazon-codewhisperer-jupyterlab-ext.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_codewhisperer_jupyterlab_ext"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/amazon-q-developer-jupyterlab-ext.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_q_developer_jupyterlab_ext"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/amazon-sagemaker-jupyter-ai-q-developer.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_jupyter_ai_q_developer"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/amazon-sagemaker-sql-magic.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_sql_magic"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/amazon_sagemaker_sql_editor.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import amazon_sagemaker_sql_editor"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/anaconda.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_anaconda_tests.sh . 7 | RUN chmod +x run_anaconda_tests.sh 8 | CMD ["./run_anaconda_tests.sh"] -------------------------------------------------------------------------------- /test/test_artifacts/v3/aws-glue-sessions/resource-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "ResourceArn": "NotebookInstanceArn", 3 | "ResourceName": "NotebookInstanceName" 4 | } -------------------------------------------------------------------------------- /test/test_artifacts/v3/aws-glue-sessions/run_glue_sessions_notebook.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Create an empty notebook file for papermill's output 4 | touch nb_output.ipynb 5 | 6 | kernels=('glue_pyspark' 'glue_spark') 7 | nb='script' 8 | for kernel in ${kernels[@]}; do 9 | papermill 'glue_notebook.ipynb' 'nb_output.ipynb' -k $kernel 10 | done 11 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/docker-cli.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_docker_cli_tests.sh ./ 7 | RUN chmod +x run_docker_cli_tests.sh 8 | 9 | CMD ["./run_docker_cli_tests.sh"] -------------------------------------------------------------------------------- /test/test_artifacts/v3/jupyter-ai.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import jupyter_ai"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/jupyter-dash.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | CMD ["python", "-c", "import plotly.express as px; import sys; fig = px.bar(x=['a', 'b', 'c'], y=[1, 3, 2]); fig.write_html('first_figure.html', auto_open=False)"] 7 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/jupyterlab-lsp.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | COPY --chown=$MAMBA_USER:$MAMBA_USER scripts/run_jupyterlab_lsp_tests.sh ./ 7 | RUN chmod +x run_jupyterlab_lsp_tests.sh 8 | 9 | CMD ["./run_jupyterlab_lsp_tests.sh"] 10 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/pandas.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | RUN micromamba install -y --freeze-installed -c conda-forge pytest hypothesis pytest-asyncio lxml 6 | 7 | COPY --chown=$MAMBA_USER:$MAMBA_USER run_pandas_tests.py . 8 | CMD ["python", "run_pandas_tests.py"] 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/sagemaker-headless-execution-driver.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | # Execute the unit tests for sagemaker-headless-execution-driver 7 | CMD ["python", "-c", "import sagemaker_headless_execution_driver.headless_execution as execution_driver"] 8 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/sagemaker-recovery-mode.test.Dockerfile: -------------------------------------------------------------------------------- 1 | ARG SAGEMAKER_DISTRIBUTION_IMAGE 2 | FROM $SAGEMAKER_DISTRIBUTION_IMAGE 3 | 4 | ARG MAMBA_DOCKERFILE_ACTIVATE=1 5 | 6 | ENV SAGEMAKER_RECOVERY_MODE=true 7 | 8 | ENTRYPOINT ["/usr/local/bin/entrypoint-jupyter-server"] 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/sagemaker-studio-analytics-extension/sagemaker-studio-analytics-extension.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | papermill 'sagemaker_studio_analytics_extension.ipynb' 'nb_output.ipynb' 3 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_fastapi_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | fastapi_version=$(micromamba list | grep fastapi | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$fastapi_version 6 | 7 | pip install -r requirements-tests.txt 8 | 9 | pytest tests/ -v -k "not test_tutorial" 10 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_ipywidgets_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | jupyter nbconvert --execute --to python tests/test_borders.ipynb 4 | jupyter nbconvert --execute --to python tests/test_sanitizer.ipynb 5 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_jupyter_collaboration_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip install ".[test]" 4 | 5 | pytest tests/ -v 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_jupyterlab_git_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | jupyter_git_version=$(micromamba list | grep jupyter-git | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$jupyter_git_version 6 | 7 | pip install ".[test]" 8 | 9 | pytest -v jupyterlab_git/tests/ 10 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_matplotlib_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Run all the tutorials 3 | for file in *.py; do 4 | python "$file" || exit $? 5 | done 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_notebook_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | notebook_version=$(micromamba list | grep notebook | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$notebook_version 6 | 7 | pip install ".[test]" 8 | 9 | pytest tests/ -v -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_sagemaker_mlflow_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | pytest -s -rA -vv test/unit 6 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_supervisor_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | supervisor_version=$(micromamba list | grep supervisor | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$supervisor_version 6 | 7 | pytest -v supervisor/tests/ 8 | 9 | -------------------------------------------------------------------------------- /test/test_artifacts/v3/scripts/run_uvicorn_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | uvicorn_version=$(micromamba list | grep uvicorn | tr -s ' ' | cut -d ' ' -f 3) 4 | 5 | git checkout tags/v$uvicorn_version 6 | 7 | pip install -r requirements.txt 8 | 9 | pytest tests -v -k "not test_main.py" 10 | --------------------------------------------------------------------------------