Skip to content

Commit 483f956

Browse files
authored
Merge pull request microsoft#379 from microsoft/bethany-dependancy-partch
Dependancies patch
2 parents 2aa3acb + c374a76 commit 483f956

File tree

4 files changed

+30
-31
lines changed

4 files changed

+30
-31
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ FROM mcr.microsoft.com/vscode/devcontainers/miniconda:0-3
44
ARG NODE_VERSION="none"
55
RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
66

7-
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
8-
&& apt-get -y install libgl1
7+
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
8+
# && apt-get -y install libgl1
99

1010
# Copy environment.yml (if found) to a temp location so we update the environment. Also
1111
# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"dockerfile": "Dockerfile",
66
"args": {
77
"NODE_VERSION": "lts/*",
8-
"DOCKER_CLIENT_TIMEOUT": "120",
9-
"COMPOSE_HTTP_TIMEOUT": "120"
8+
"DOCKER_CLIENT_TIMEOUT": "",
9+
"COMPOSE_HTTP_TIMEOUT": ""
1010
}
1111
},
1212
"hostRequirements": {

.devcontainer/environment.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ channels:
33
- defaults
44
- conda-forge
55
dependencies:
6-
- ipykernel=6.4.1
7-
- ipython=7.27.0
8-
- ipywidgets=7.6.5
9-
- jupyter=1.0.0
10-
- matplotlib=3.4.2
11-
- numpy=1.22.3
12-
- python=3.8.12ip
13-
- requests=2.26.0
14-
- scikit-learn=0.24.2
15-
- scipy=1.6.2
16-
- pip=21.0.1
17-
- conda-forge::opencv=4.5
18-
- setuptools=58.0.4
19-
- pytorch::pytorch=1.11.0
20-
- pytorch::torchtext=0.12.0
21-
- pytorch::torchvision=0.12.0
22-
- pytorch::torchdata=0.3.0
6+
- ipykernel
7+
- ipython
8+
- ipywidgets
9+
- jupyter
10+
- matplotlib=3.9
11+
- numpy=1.26
12+
- python
13+
- requests=2.32
14+
- scikit-learn
15+
- scipy=1.13
16+
- pip
17+
- conda-forge::opencv
18+
- setuptools
19+
- pytorch::pytorch
20+
- pytorch::torchtext
21+
- pytorch::torchvision
22+
- pytorch::torchdata
2323
- pip:
2424
- -r requirements.txt

.devcontainer/requirements.txt

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@ gensim==4.3.3
22
gym==0.26.2
33
huggingface==0.0.1
44
imageio==2.35.0
5-
keras==2.13.1
6-
nltk==3.8.2
7-
pandas==2.0.3
5+
keras==3.5.0
6+
nltk==3.8.1
7+
pandas==2.2.2
88
pillow==10.4.0
99
pygame==2.6.0
10-
scikit-image==0.21.0
10+
scikit-image==0.24.0
1111
seaborn==0.13.2
1212
smart-open==7.0.4
1313
tensorboard-data-server==0.7.2
14-
tensorflow-datasets==4.9.2
14+
tensorflow-datasets==4.9.6
1515
tensorflow-hub==0.16.1
16-
tensorflow-text==2.13.0
17-
tensorflow==2.13.1
18-
tensorboard==2.13.0
19-
tokenizers==0.19.1
16+
tensorflow==2.17.0
17+
tensorboard==2.17.1
18+
tokenizers==0.20.0
2019
torchinfo==1.8.0
2120
tqdm==4.66.5
22-
transformers==4.44.0
21+

0 commit comments

Comments
 (0)