Skip to content

Commit 1f40d50

Browse files
committed
upd data analytics dependencies
Signed-off-by: jafraustro <jaime.fraustro.valdez@intel.com>
1 parent b0ed08d commit 1f40d50

File tree

3 files changed

+19
-28
lines changed

3 files changed

+19
-28
lines changed

preset/classical-ml/docker-compose.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ services:
6464
dependency.conda.daal4py: '=2024.5.0'
6565
dependency.conda.dpnp: '=0.15.0'
6666
dependency.conda.ipykernel: '==6.29.5'
67-
dependency.conda.jupyterhub: '==5.1.0'
67+
dependency.conda.jupyterhub: '==5.2.1'
6868
dependency.conda.jupyter-server-proxy: '==4.4.0'
6969
dependency.conda.kernda: '==0.3.0'
7070
dependency.conda.matplotlib-base: '==3.9/2'

preset/data-analytics/Dockerfile

+13-21
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,12 @@ RUN wget --progress=dot:giga --no-check-certificate "https://github.com/conda-fo
5959
export PATH="${CONDA_ROOT}/bin/:${PATH}" && \
6060
conda init --all && \
6161
conda install -y \
62-
'colorama==0.4.6' \
63-
'conda==24.5.0' \
64-
'jupyterhub==5.1.0' \
65-
'jupyter-server-proxy==4.3.0' \
66-
'mamba==1.5.8' \
67-
'networkx==3.3' \
68-
'notebook==7.2.1' \
69-
'python==3.10.14' \
70-
'idna>=3.7' \
71-
'requests>=2.32.0' \
72-
'setuptools>=70.0.0' \
73-
'tqdm>=4.66.3' \
74-
'urllib3>=2.2.2' \
75-
'nodejs==22.5.1' \
62+
'conda==24.9.2' \
63+
'jupyterlab==4.2.5' \
64+
'jupyterhub==5.2.1' \
65+
'notebook==7.2.2' \
66+
'jupyter-server-proxy==4.4.0' \
67+
'nb_conda_kernels==2.5.1' \
7668
&& \
7769
jupyter labextension disable "@jupyterlab/apputils-extension:announcements" \
7870
&& \
@@ -93,19 +85,19 @@ RUN conda create -yn data-analytics \
9385
"dpnp=${DPNP_VERSION}" \
9486
'ipykernel==6.29.5' \
9587
'kernda==0.3.0' \
96-
'matplotlib-base==3.8.4' \
88+
'matplotlib-base==3.9.2' \
9789
"modin-ray=${MODIN_VERSION}" \
9890
'python-dotenv==1.0.1' \
99-
'idna>=3.7' \
100-
'requests>=2.32.0' \
10191
'setuptools>=70.0.0' \
102-
'tqdm>=4.66.3' \
103-
'urllib3>=2.2.2' \
92+
'tqdm==4.66.5' \
10493
&& \
10594
conda clean -y --all
10695

107-
RUN conda run -n data-analytics python -m pip install --no-deps --no-cache-dir \
108-
'dataset-librarian==1.0.4'
96+
COPY requirements.txt .
97+
RUN conda run -n 'data-analytics' python -m pip install --no-deps --no-cache-dir -r requirements.txt && \
98+
conda clean -y --all
99+
100+
RUN rm -rf requirements.txt
109101

110102
EXPOSE 8888
111103

preset/data-analytics/docker-compose.yaml

+5-6
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,19 @@ services:
5656
dependency.apt.unzip: true
5757
dependency.apt.wget: true
5858
dependency.apt.xz-utils: true
59-
dependency.conda.colorama: '==0.4.6'
60-
dependency.conda.conda: '==24.5.0'
59+
dependency.conda.conda: '==24.9.2'
6160
dependency.conda.dpnp: '=0.15.0'
6261
dependency.conda.ipykernel: '==6.29.5'
63-
dependency.conda.jupyterhub: '==5.1.0'
62+
dependency.conda.jupyterhub: '==5.2.1'
6463
dependency.conda.jupyter-server-proxy: '==4.3.0'
6564
dependency.conda.kernda: '==0.3.0'
66-
dependency.conda.mamba: '==1.5.8'
6765
dependency.conda.matplotlib-base: '==3.8.4'
6866
dependency.conda.modin-ray: '=0.30.0'
69-
dependency.conda.networkx: '==3.3'
70-
dependency.conda.notebook: '==7.2.1'
67+
dependency.conda.nb_conda_kernels: '==2.5.1'
68+
dependency.conda.notebook: '==7.2.2'
7169
dependency.conda.python: '==3.10.14'
7270
dependency.conda.python-dotenv: '==1.0.1'
71+
dependency.conda.tqdm: '==4.66.5'
7372
image: ${REGISTRY}/${REPO}:b-${GITHUB_RUN_NUMBER:-0}-data-analytics-${RELEASE:-2024.2.0}-py${PYTHON_VERSION:-3.9}
7473
environment:
7574
http_proxy: ${http_proxy}

0 commit comments

Comments
 (0)