Skip to content

Commit 6e182d1

Browse files
authored
release: v2.2.5 (#614)
2 parents 0fcb75d + 242b6a7 commit 6e182d1

28 files changed

+2197
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Change log: 2.2.5(cpu)
2+
3+
## Upgrades:
4+
5+
Package | Previous Version | Current Version
6+
---|---|---
7+
jinja2|3.1.5|3.1.6
8+
amazon-sagemaker-jupyter-scheduler|3.1.10|3.1.11
9+
amazon-sagemaker-sql-magic|0.1.3|0.1.4
10+
amazon_sagemaker_sql_editor|0.1.15|0.1.16
11+
ipywidgets|8.1.5|8.1.6
12+
aws-glue-sessions|1.0.8|1.0.9
13+
fastapi|0.115.11|0.115.12
14+
sagemaker-jupyterlab-emr-extension|0.3.7|0.3.8
15+
sagemaker-studio-analytics-extension|0.1.5|0.1.6
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Change log: 2.2.5(gpu)
2+
3+
## Upgrades:
4+
5+
Package | Previous Version | Current Version
6+
---|---|---
7+
jinja2|3.1.5|3.1.6
8+
amazon-sagemaker-jupyter-scheduler|3.1.10|3.1.11
9+
amazon-sagemaker-sql-magic|0.1.3|0.1.4
10+
amazon_sagemaker_sql_editor|0.1.15|0.1.16
11+
ipywidgets|8.1.5|8.1.6
12+
aws-glue-sessions|1.0.8|1.0.9
13+
fastapi|0.115.11|0.115.12
14+
sagemaker-jupyterlab-emr-extension|0.3.7|0.3.8
15+
sagemaker-studio-analytics-extension|0.1.5|0.1.6
Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
ARG TAG_FOR_BASE_MICROMAMBA_IMAGE
2+
FROM mambaorg/micromamba:$TAG_FOR_BASE_MICROMAMBA_IMAGE
3+
4+
ARG CUDA_MAJOR_MINOR_VERSION=''
5+
ARG ENV_IN_FILENAME
6+
ARG PINNED_ENV_IN_FILENAME
7+
ARG ARG_BASED_ENV_IN_FILENAME
8+
ARG IMAGE_VERSION
9+
LABEL "org.amazon.sagemaker-distribution.image.version"=$IMAGE_VERSION
10+
11+
ARG AMZN_BASE="/opt/amazon/sagemaker"
12+
ARG DB_ROOT_DIR="/opt/db"
13+
ARG DIRECTORY_TREE_STAGE_DIR="${AMZN_BASE}/dir-staging"
14+
15+
ARG NB_USER="sagemaker-user"
16+
ARG NB_UID=1000
17+
ARG NB_GID=100
18+
19+
# https://www.openssl.org/source/
20+
ARG FIPS_VALIDATED_SSL=3.0.8
21+
22+
ENV SAGEMAKER_LOGGING_DIR="/var/log/sagemaker/"
23+
ENV STUDIO_LOGGING_DIR="/var/log/studio/"
24+
ENV EDITOR="nano"
25+
ENV IMAGE_VERSION=$IMAGE_VERSION
26+
27+
USER root
28+
RUN usermod "--login=${NB_USER}" "--home=/home/${NB_USER}" --move-home "-u ${NB_UID}" "${MAMBA_USER}" && \
29+
groupmod "--new-name=${NB_USER}" --non-unique "-g ${NB_GID}" "${MAMBA_USER}" && \
30+
# Update the expected value of MAMBA_USER for the
31+
# _entrypoint.sh consistency check.
32+
echo "${NB_USER}" > "/etc/arg_mamba_user" && \
33+
:
34+
ENV MAMBA_USER=$NB_USER
35+
ENV USER=$NB_USER
36+
37+
RUN apt-get update && apt-get upgrade -y && \
38+
apt-get install -y --no-install-recommends sudo gettext-base wget curl unzip git rsync build-essential openssh-client nano cron less mandoc && \
39+
# We just install tzdata below but leave default time zone as UTC. This helps packages like Pandas to function correctly.
40+
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata krb5-user libkrb5-dev libsasl2-dev libsasl2-modules && \
41+
chmod g+w /etc/passwd && \
42+
echo "ALL ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers && \
43+
touch /etc/krb5.conf.lock && chown ${NB_USER}:${MAMBA_USER} /etc/krb5.conf* && \
44+
# Note that we do NOT run `rm -rf /var/lib/apt/lists/*` here. If we did, anyone building on top of our images will
45+
# not be able to run any `apt-get install` commands and that would hamper customizability of the images.
46+
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
47+
unzip awscliv2.zip && \
48+
sudo ./aws/install && \
49+
rm -rf aws awscliv2.zip && \
50+
: && \
51+
echo "source /usr/local/bin/_activate_current_env.sh" | tee --append /etc/profile && \
52+
# CodeEditor - create server, user data dirs
53+
mkdir -p /opt/amazon/sagemaker/sagemaker-code-editor-server-data /opt/amazon/sagemaker/sagemaker-code-editor-user-data \
54+
&& chown $MAMBA_USER:$MAMBA_USER /opt/amazon/sagemaker/sagemaker-code-editor-server-data /opt/amazon/sagemaker/sagemaker-code-editor-user-data && \
55+
# create dir to store user data files
56+
mkdir -p /opt/amazon/sagemaker/user-data \
57+
&& chown $MAMBA_USER:$MAMBA_USER /opt/amazon/sagemaker/user-data && \
58+
# Merge in OS directory tree contents.
59+
mkdir -p ${DIRECTORY_TREE_STAGE_DIR}
60+
COPY dirs/ ${DIRECTORY_TREE_STAGE_DIR}/
61+
RUN rsync -a ${DIRECTORY_TREE_STAGE_DIR}/ / && \
62+
rm -rf ${DIRECTORY_TREE_STAGE_DIR} && \
63+
# CodeEditor - download the extensions
64+
mkdir -p /etc/code-editor/extensions && \
65+
while IFS= read -r url || [ -n "$url" ]; do \
66+
echo "Downloading extension from ${url}..." && \
67+
wget --no-check-certificate -P /etc/code-editor/extensions "${url}"; \
68+
done < /etc/code-editor/extensions.txt
69+
70+
USER $MAMBA_USER
71+
COPY --chown=$MAMBA_USER:$MAMBA_USER $ENV_IN_FILENAME *.in /tmp/
72+
COPY --chown=$MAMBA_USER:$MAMBA_USER $PINNED_ENV_IN_FILENAME *.in /tmp/
73+
ARG MAMBA_DOCKERFILE_ACTIVATE=1
74+
ARG CONDA_OVERRIDE_CUDA=$CUDA_MAJOR_MINOR_VERSION
75+
76+
# Make sure that $ENV_IN_FILENAME and $PINNED_ENV_IN_FILENAME has a newline at the end before the `tee` command runs.
77+
# Otherwise, nasty things will happen.
78+
RUN if [[ -z $ARG_BASED_ENV_IN_FILENAME ]] ; \
79+
then echo 'No ARG_BASED_ENV_IN_FILENAME passed' ; \
80+
else envsubst < /tmp/$ARG_BASED_ENV_IN_FILENAME | tee --append /tmp/$ENV_IN_FILENAME ; \
81+
fi && \
82+
# Enforce dependencies are all installed from conda-forge
83+
micromamba install -y --name base --file /tmp/$ENV_IN_FILENAME --file /tmp/$PINNED_ENV_IN_FILENAME && \
84+
micromamba clean --all --yes --force-pkgs-dirs && \
85+
rm -rf /tmp/*.in && \
86+
sudo ln -s $(which python3) /usr/bin/python && \
87+
# Update npm version
88+
npm i -g npm && \
89+
# Enforce to use `conda-forge` as only channel, by removing `defaults`
90+
conda config --remove channels defaults && \
91+
micromamba config append channels conda-forge --env && \
92+
# Configure CodeEditor - Install extensions and set preferences
93+
extensionloc=/opt/amazon/sagemaker/sagemaker-code-editor-server-data/extensions && mkdir -p "${extensionloc}" \
94+
# Loop through all vsix files in /etc/code-editor/extensions and install them
95+
&& for ext in /etc/code-editor/extensions/*.vsix; do \
96+
echo "Installing extension ${ext}..."; \
97+
sagemaker-code-editor --install-extension "${ext}" --extensions-dir "${extensionloc}" --server-data-dir /opt/amazon/sagemaker/sagemaker-code-editor-server-data --user-data-dir /opt/amazon/sagemaker/sagemaker-code-editor-user-data; \
98+
done \
99+
# Copy the settings
100+
&& cp /etc/code-editor/code_editor_machine_settings.json /opt/amazon/sagemaker/sagemaker-code-editor-server-data/data/Machine/settings.json \
101+
&& cp /etc/code-editor/code_editor_user_settings.json /opt/amazon/sagemaker/sagemaker-code-editor-server-data/data/User/settings.json && \
102+
# Install glue kernels, and move to shared directory
103+
# Also patching base kernel so Studio background code doesn't start session silently
104+
install-glue-kernels && \
105+
SITE_PACKAGES=$(pip show aws-glue-sessions | grep Location | awk '{print $2}') && \
106+
jupyter-kernelspec install $SITE_PACKAGES/aws_glue_interactive_sessions_kernel/glue_pyspark --user && \
107+
jupyter-kernelspec install $SITE_PACKAGES/aws_glue_interactive_sessions_kernel/glue_spark --user && \
108+
mv /home/sagemaker-user/.local/share/jupyter/kernels/glue_pyspark /opt/conda/share/jupyter/kernels && \
109+
mv /home/sagemaker-user/.local/share/jupyter/kernels/glue_spark /opt/conda/share/jupyter/kernels && \
110+
sed -i '/if not store_history and (/i\ if "sm_analytics_runtime_check" in code:\n return await self._complete_cell()\n' \
111+
"$SITE_PACKAGES/aws_glue_interactive_sessions_kernel/glue_kernel_base/BaseKernel.py" && \
112+
# Install FIPS Provider for OpenSSL, on top of existing OpenSSL installation
113+
# v3.0.8 is latest FIPS validated provider, so this is the one we install
114+
# But we need to run tests against the installed version.
115+
# see https://github.com/openssl/openssl/blob/master/README-FIPS.md https://www.openssl.org/source/
116+
INSTALLED_SSL=$(micromamba list | grep openssl | tr -s ' ' | cut -d ' ' -f 3 | head -n 1) && \
117+
# download source code for installed, and FIPS validated openssl versions
118+
curl -L https://github.com/openssl/openssl/releases/download/openssl-$FIPS_VALIDATED_SSL/openssl-$FIPS_VALIDATED_SSL.tar.gz > openssl-$FIPS_VALIDATED_SSL.tar.gz && \
119+
curl -L https://github.com/openssl/openssl/releases/download/openssl-$INSTALLED_SSL/openssl-$INSTALLED_SSL.tar.gz > openssl-$INSTALLED_SSL.tar.gz && \
120+
tar -xf openssl-$FIPS_VALIDATED_SSL.tar.gz && tar -xf openssl-$INSTALLED_SSL.tar.gz && cd openssl-$FIPS_VALIDATED_SSL && \
121+
# Configure both versions to enable FIPS and build
122+
./Configure enable-fips --prefix=/opt/conda --openssldir=/opt/conda/ssl && make && \
123+
cd ../openssl-$INSTALLED_SSL && \
124+
./Configure enable-fips --prefix=/opt/conda --openssldir=/opt/conda/ssl && make && \
125+
# Copy validated provider to installed version for testing
126+
cp ../openssl-$FIPS_VALIDATED_SSL/providers/fips.so providers/. && \
127+
cp ../openssl-$FIPS_VALIDATED_SSL/providers/fipsmodule.cnf providers/. && \
128+
make tests && cd ../openssl-$FIPS_VALIDATED_SSL && \
129+
# After tests pass, install FIPS provider and remove source code
130+
make install_fips && cd .. && rm -rf ./openssl-* && \
131+
# Create new config file with fips-enabled. Then user can override OPENSSL_CONF to enable FIPS
132+
# e.g. export OPENSSL_CONF=/opt/conda/ssl/openssl-fips.cnf
133+
cp /opt/conda/ssl/openssl.cnf /opt/conda/ssl/openssl-fips.cnf && \
134+
sed -i "s:# .include fipsmodule.cnf:.include /opt/conda/ssl/fipsmodule.cnf:" /opt/conda/ssl/openssl-fips.cnf && \
135+
sed -i 's:# fips = fips_sect:fips = fips_sect:' /opt/conda/ssl/openssl-fips.cnf && \
136+
# Install Kerberos.
137+
# Make sure no dependency is added/updated
138+
pip install "krb5>=0.5.1,<0.6" && \
139+
pip show krb5 | grep Require | xargs -i sh -c '[ $(echo {} | cut -d: -f2 | wc -w) -eq 0 ] ' && \
140+
# https://stackoverflow.com/questions/122327
141+
SYSTEM_PYTHON_PATH=$(python3 -c "from __future__ import print_function;import sysconfig; print(sysconfig.get_paths().get('purelib'))") && \
142+
# Remove SparkRKernel as it's not supported \
143+
jupyter-kernelspec remove -f -y sparkrkernel && \
144+
# Patch Sparkmagic lib to support Custom Certificates \
145+
# https://github.com/jupyter-incubator/sparkmagic/pull/435/files \
146+
cp -a ${SYSTEM_PYTHON_PATH}/sagemaker_studio_analytics_extension/patches/configuration.py ${SYSTEM_PYTHON_PATH}/sparkmagic/utils/ && \
147+
cp -a ${SYSTEM_PYTHON_PATH}/sagemaker_studio_analytics_extension/patches/reliablehttpclient.py ${SYSTEM_PYTHON_PATH}/sparkmagic/livyclientlib/reliablehttpclient.py && \
148+
sed -i 's= "python"= "/opt/conda/bin/python"=g' /opt/conda/share/jupyter/kernels/pysparkkernel/kernel.json /opt/conda/share/jupyter/kernels/sparkkernel/kernel.json && \
149+
sed -i 's="Spark"="SparkMagic Spark"=g' /opt/conda/share/jupyter/kernels/sparkkernel/kernel.json && \
150+
sed -i 's="PySpark"="SparkMagic PySpark"=g' /opt/conda/share/jupyter/kernels/pysparkkernel/kernel.json && \
151+
# Configure RTC - disable jupyter_collaboration by default
152+
jupyter labextension disable @jupyter/collaboration-extension
153+
154+
# Patch glue kernels to use kernel wrapper
155+
COPY patch_glue_pyspark.json /opt/conda/share/jupyter/kernels/glue_pyspark/kernel.json
156+
COPY patch_glue_spark.json /opt/conda/share/jupyter/kernels/glue_spark/kernel.json
157+
158+
USER root
159+
160+
# Create logging directories for supervisor
161+
RUN mkdir -p $SAGEMAKER_LOGGING_DIR && \
162+
chmod a+rw $SAGEMAKER_LOGGING_DIR && \
163+
mkdir -p ${STUDIO_LOGGING_DIR} && \
164+
chown ${NB_USER}:${MAMBA_USER} ${STUDIO_LOGGING_DIR} && \
165+
# Clean up CodeEditor artifacts
166+
rm -rf /etc/code-editor && \
167+
# Create supervisord runtime directory
168+
mkdir -p /var/run/supervisord && \
169+
chmod a+rw /var/run/supervisord && \
170+
# Create root directory for DB
171+
# Create logging directories for supervisor
172+
mkdir -p $DB_ROOT_DIR && \
173+
chmod a+rw $DB_ROOT_DIR && \
174+
HOME_DIR="/home/${NB_USER}/licenses" \
175+
&& mkdir -p ${HOME_DIR} \
176+
&& curl -o ${HOME_DIR}/oss_compliance.zip https://aws-dlinfra-utilities.s3.amazonaws.com/oss_compliance.zip \
177+
&& unzip ${HOME_DIR}/oss_compliance.zip -d ${HOME_DIR}/ \
178+
&& cp ${HOME_DIR}/oss_compliance/test/testOSSCompliance /usr/local/bin/testOSSCompliance \
179+
&& chmod +x /usr/local/bin/testOSSCompliance \
180+
&& chmod +x ${HOME_DIR}/oss_compliance/generate_oss_compliance.sh \
181+
&& ${HOME_DIR}/oss_compliance/generate_oss_compliance.sh ${HOME_DIR} python \
182+
&& rm -rf ${HOME_DIR}/oss_compliance*
183+
184+
# Explicitly disable BuildKit for SM Studio Docker functionality
185+
ENV DOCKER_BUILDKIT=0
186+
ENV PATH="/opt/conda/bin:/opt/conda/condabin:$PATH"
187+
WORKDIR "/home/${NB_USER}"
188+
ENV SHELL=/bin/bash
189+
ENV OPENSSL_MODULES=/opt/conda/lib64/ossl-modules/
190+
USER $MAMBA_USER
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Release notes: 2.2.5
2+
3+
Package | gpu| cpu
4+
---|---|---
5+
python|3.11.11|3.11.11
6+
numpy|1.26.4|1.26.4
7+
jinja2|3.1.6|3.1.6
8+
pytorch|2.3.1|2.4.1
9+
altair|5.4.1|5.4.1
10+
boto3|1.34.162|1.34.162
11+
ipython|8.29.0|8.29.0
12+
jupyter-lsp|2.2.5|2.2.5
13+
jupyterlab|4.2.7|4.2.7
14+
amazon-q-developer-jupyterlab-ext|3.4.7|3.4.7
15+
langchain|0.2.17|0.2.17
16+
jupyter-ai|2.28.5|2.28.5
17+
amazon-sagemaker-jupyter-ai-q-developer|1.0.17|1.0.17
18+
jupyter-scheduler|2.9.0|2.9.0
19+
amazon-sagemaker-jupyter-scheduler|3.1.11|3.1.11
20+
pandas|2.2.3|2.2.3
21+
amazon-sagemaker-sql-magic|0.1.4|0.1.4
22+
jupyterlab-lsp|5.0.3|5.0.3
23+
amazon_sagemaker_sql_editor|0.1.16|0.1.16
24+
scipy|1.14.1|1.14.1
25+
matplotlib-base|3.9.4|3.9.4
26+
scikit-learn|1.5.2|1.5.2
27+
pip|24.3.1|24.3.1
28+
torchvision|0.18.1|0.19.1
29+
autogluon|1.1.1|1.1.1
30+
ipywidgets|8.1.6|8.1.6
31+
notebook|7.2.2|7.2.2
32+
aws-glue-sessions|1.0.9|1.0.9
33+
conda|24.9.2|24.9.2
34+
docker-cli|27.1.1|27.1.1
35+
uvicorn|0.32.1|0.32.1
36+
fastapi|0.115.12|0.115.12
37+
git-remote-codecommit|1.16|1.16
38+
jupyter-activity-monitor-extension|0.3.1|0.3.1
39+
jupyter-collaboration|2.1.5|2.1.5
40+
jupyter-dash|0.4.2|0.4.2
41+
jupyter-server-proxy|4.4.0|4.4.0
42+
jupyterlab-git|0.50.2|0.50.2
43+
keras|3.6.0|3.6.0
44+
langchain-aws|0.1.18|0.1.18
45+
mlflow|2.17.2|2.17.2
46+
py-xgboost-gpu|2.1.4|
47+
pyhive|0.7.0|0.7.0
48+
python-gssapi|1.9.0|1.9.0
49+
python-lsp-server|1.12.2|1.12.2
50+
sagemaker-code-editor|1.4.2|1.4.2
51+
sagemaker-headless-execution-driver|0.0.13|0.0.13
52+
sagemaker-jupyterlab-emr-extension|0.3.8|0.3.8
53+
sagemaker-jupyterlab-extension|0.3.3|0.3.3
54+
sagemaker-kernel-wrapper|0.0.5|0.0.5
55+
sagemaker-mlflow|0.1.0|0.1.0
56+
sagemaker-python-sdk|2.227.0|2.227.0
57+
sagemaker-studio-analytics-extension|0.1.6|0.1.6
58+
supervisor|4.2.5|4.2.5
59+
tensorflow|2.17.0|2.17.0
60+
tf-keras|2.17.0|2.17.0
61+
py-xgboost-cpu| |2.1.4
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# This file is auto-generated.
2+
conda-forge::jupyter-activity-monitor-extension[version='>=0.3.1,<0.4.0']
3+
conda-forge::mlflow[version='>=2.17.2,<2.18.0']
4+
conda-forge::sagemaker-mlflow[version='>=0.1.0,<0.2.0']
5+
conda-forge::langchain-aws[version='>=0.1.18,<0.2.0']
6+
conda-forge::jupyter-collaboration[version='>=2.1.5,<2.2.0']
7+
conda-forge::sagemaker-code-editor[version='>=1.4.2,<1.5.0']
8+
conda-forge::amazon_sagemaker_sql_editor[version='>=0.1.15,<0.2.0']
9+
conda-forge::amazon-sagemaker-sql-magic[version='>=0.1.3,<0.2.0']
10+
conda-forge::amazon-sagemaker-jupyter-ai-q-developer[version='>=1.0.17,<1.1.0']
11+
conda-forge::amazon-q-developer-jupyterlab-ext[version='>=3.4.7,<3.5.0']
12+
conda-forge::langchain[version='>=0.2.17,<0.3.0']
13+
conda-forge::fastapi[version='>=0.115.11,<0.116.0']
14+
conda-forge::uvicorn[version='>=0.32.1,<0.33.0']
15+
conda-forge::pytorch[version='>=2.4.1,<2.5.0']
16+
conda-forge::tensorflow[version='>=2.17.0,<2.18.0']
17+
conda-forge::python[version='>=3.11.11,<3.12.0']
18+
conda-forge::pip[version='>=24.3.1,<24.4.0']
19+
conda-forge::torchvision[version='>=0.19.1,<0.20.0']
20+
conda-forge::numpy[version='>=1.26.4,<1.27.0']
21+
conda-forge::pandas[version='>=2.2.3,<2.3.0']
22+
conda-forge::scikit-learn[version='>=1.5.2,<1.6.0']
23+
conda-forge::jinja2[version='>=3.1.5,<3.2.0']
24+
conda-forge::matplotlib-base[version='>=3.9.4,<3.10.0']
25+
conda-forge::sagemaker-headless-execution-driver[version='>=0.0.13,<0.1.0']
26+
conda-forge::ipython[version='>=8.29.0,<8.30.0']
27+
conda-forge::scipy[version='>=1.14.1,<1.15.0']
28+
conda-forge::keras[version='>=3.6.0,<3.7.0']
29+
conda-forge::py-xgboost-cpu[version='>=2.1.4,<2.2.0']
30+
conda-forge::jupyterlab[version='>=4.2.7,<4.3.0']
31+
conda-forge::ipywidgets[version='>=8.1.5,<8.2.0']
32+
conda-forge::conda[version='>=24.9.2,<24.10.0']
33+
conda-forge::boto3[version='>=1.34.162,<1.35.0']
34+
conda-forge::sagemaker-python-sdk[version='>=2.227.0,<2.228.0']
35+
conda-forge::supervisor[version='>=4.2.5,<4.3.0']
36+
conda-forge::autogluon[version='>=1.1.1,<1.2.0']
37+
conda-forge::aws-glue-sessions[version='>=1.0.8,<1.1.0']
38+
conda-forge::sagemaker-kernel-wrapper[version='>=0.0.5,<0.1.0']
39+
conda-forge::jupyter-ai[version='>=2.28.5,<2.29.0']
40+
conda-forge::jupyter-scheduler[version='>=2.9.0,<2.10.0']
41+
conda-forge::jupyter-lsp[version='>=2.2.5,<2.3.0']
42+
conda-forge::jupyterlab-lsp[version='>=5.0.3,<5.1.0']
43+
conda-forge::python-lsp-server[version='>=1.12.2,<1.13.0']
44+
conda-forge::notebook[version='>=7.2.2,<7.3.0']
45+
conda-forge::altair[version='>=5.4.1,<5.5.0']
46+
conda-forge::sagemaker-studio-analytics-extension[version='>=0.1.5,<0.2.0']
47+
conda-forge::jupyter-dash[version='>=0.4.2,<0.5.0']
48+
conda-forge::sagemaker-jupyterlab-extension[version='>=0.3.3,<0.4.0']
49+
conda-forge::sagemaker-jupyterlab-emr-extension[version='>=0.3.7,<0.4.0']
50+
conda-forge::amazon-sagemaker-jupyter-scheduler[version='>=3.1.10,<3.2.0']
51+
conda-forge::jupyter-server-proxy[version='>=4.4.0,<4.5.0']
52+
conda-forge::jupyterlab-git[version='>=0.50.2,<0.51.0']
53+
conda-forge::pyhive[version='>=0.7.0,<0.8.0']
54+
conda-forge::python-gssapi[version='>=1.9.0,<1.10.0']
55+
conda-forge::tf-keras[version='>=2.17.0,<2.18.0']
56+
conda-forge::git-remote-codecommit[version='>=1.16,<1.17.0']
57+
conda-forge::docker-cli[version='>=27.1.1,<27.2.0']

0 commit comments

Comments
 (0)