Skip to content

Commit

Permalink
Update documents and dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
hseok-oh committed Sep 3, 2024
1 parent 99a7c1f commit 83ef18c
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python-version: '3.x'

# C format: clang-format-16
# Python format: yapf==0.22.0
# Python format: yapf==0.40.2
- name: Install packages
run: |
sudo apt-get install -y gnupg2 software-properties-common
Expand Down
2 changes: 1 addition & 1 deletion docs/howto/how-to-build-compiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $ cmake /usr/src/gtest
$ make
$ sudo mv *.a /usr/lib
$ pip install yapf==0.22.0 numpy
$ pip install yapf==0.40.2 numpy
```

Additional install python3.8 if you are using Ubuntu 18.04.
Expand Down
2 changes: 1 addition & 1 deletion docs/howto/how-to-build-runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ software-properties-common \
unzip \
wget
$ pip3 install yapf==0.22.0 numpy
$ pip3 install yapf==0.40.2 numpy
```

Expand Down
2 changes: 1 addition & 1 deletion infra/docker/android-sdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install yapf==0.22.0 numpy flatbuffers
RUN python3 -m pip install yapf==0.40.2 numpy flatbuffers

# Install clang-format
RUN apt-get install -qqy gnupg2
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/bionic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN apt-get update && \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN apt-get update && apt-get -qqy install python3.8 python3.8-venv python3.8-dev
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install yapf==0.22.0 numpy flatbuffers
RUN python3 -m pip install yapf==0.40.2 numpy flatbuffers
RUN python3.8 -m pip install --upgrade pip
RUN python3.8 -m pip install numpy flatbuffers

Expand Down
2 changes: 1 addition & 1 deletion infra/docker/bionic/Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN apt-get update && \
apt-get -qqy install doxygen graphviz wget zip unzip clang-format-8 python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN apt-get update && apt-get -qqy install python3.8 python3.8-venv python3.8-dev
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install yapf==0.22.0 numpy flatbuffers
RUN python3 -m pip install yapf==0.40.2 numpy flatbuffers
RUN python3.8 -m pip install --upgrade pip
RUN python3.8 -m pip install numpy flatbuffers

Expand Down
2 changes: 1 addition & 1 deletion infra/docker/focal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install yapf==0.22.0 numpy flatbuffers
RUN python3 -m pip install yapf==0.40.2 numpy flatbuffers

# Install clang-format
RUN apt-get install -qqy gnupg2
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/focal/Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install yapf==0.22.0 numpy flatbuffers
RUN python3 -m pip install yapf==0.40.2 numpy flatbuffers

# Install clang-format
RUN apt-get install -qqy gnupg2
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/jammy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install yapf==0.22.0 numpy flatbuffers
RUN python3 -m pip install yapf==0.40.2 numpy flatbuffers

# Install clang-format
RUN apt-get install -qqy gnupg2
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/jammy/Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install yapf==0.22.0 numpy flatbuffers
RUN python3 -m pip install yapf==0.40.2 numpy flatbuffers

# Install clang-format
RUN apt-get install -qqy gnupg2
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/noble/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && apt-get -qqy install libboost-all-dev libgflags-dev libgoo
# Additonal tools
RUN apt-get update && \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN python3 -m pip install yapf==0.22.0 --break-system-packages
RUN python3 -m pip install yapf==0.40.2 --break-system-packages

# Install clang-format
RUN apt-get update && apt-get -qqy install clang-format-16
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/noble/Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && apt-get -qqy install libboost-all-dev libgflags-dev libgoo
# Additonal tools
RUN apt-get update && \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools pylint curl
RUN python3 -m pip install yapf==0.22.0 --break-system-packages
RUN python3 -m pip install yapf==0.40.2 --break-system-packages

# Install clang-format
RUN apt-get update && apt-get -qqy install clang-format-16
Expand Down

0 comments on commit 83ef18c

Please sign in to comment.