Skip to content

Commit

Permalink
fix: pcc
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-stoian-zama committed Nov 25, 2024
1 parent 4914bbc commit 1b7f47f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ mypy_ci:
.PHONY: docker_build # Build dev docker
docker_build:
BUILD_ARGS="--build-arg UBUNTU_BASE=$(UBUNTU_BASE) ";\
BUILD_ARGS+="--build-arg OS_DEPS_ARG=linux-install-python "; \
if [[ $$(uname) == "Linux" ]]; then \
BUILD_ARGS+="--build-arg BUILD_UID=$$(id -u) --build-arg BUILD_GID=$$(id -g)"; \
fi; \
Expand Down
8 changes: 5 additions & 3 deletions script/make_utils/setup_os_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,14 @@ if [[ "${OS_NAME}" == "Linux" ]]; then
fi
eval "${SETUP_CMD}"

# Install poetry, either with pipx for ubuntu >= 23
# or through regular pip for older ubuntu
(pipx install poetry && pipx ensurepath) || \
(\
(\
python3 -m pip install --no-cache-dir --upgrade pip && \
python3 -m pip install --no-cache-dir --ignore-installed poetry==1.7.1 \
);
echo 'PATH=$PATH:/home/dev_user/.local/bin/' >> ~/.bashrc
);
echo "PATH=$PATH:/home/dev_user/.local/bin/" >> ~/.bashrc
elif [[ "${OS_NAME}" == "Darwin" ]]; then

# Some problems with the git which is preinstalled on AWS virtual machines. Let's unlink it
Expand Down

0 comments on commit 1b7f47f

Please sign in to comment.