Skip to content

Commit 021aa07

Browse files
authored
release: v1.13.1 (#616)
2 parents 15815a4 + 3d663a7 commit 021aa07

28 files changed

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

0 commit comments

Comments
 (0)