Skip to content

Commit

Permalink
Fix failing image builds (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif authored Feb 7, 2025
1 parent 4b15887 commit 5b2dd7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/install_gh_pkgs.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ distribution <- args[1]
# Regular CRAN packages to install
shared_pkgs <- c(
"insightsengineering/nesttemplate",
"openpharma/staged.dependencies@*release",
"openpharma/staged.dependencies@*release"
)

gh_pkgs <- list(
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_pip_pkgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def install(packages=[]):
packages (list(str)): List of package names
"""
if len(packages) > 0:
subprocess.check_call(["pip3", "install", " ".join(packages)])
subprocess.check_call(["pip3", "install", "--break-system-packages", " ".join(packages)])


# Shared packages across distributions
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_sysdeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ libsodium-dev \
default-jdk \
cmake \
graphviz \
libaio1 \
libaio1t64 \
alien \
libxss1 \
git \
Expand Down

0 comments on commit 5b2dd7f

Please sign in to comment.