Skip to content

Commit

Permalink
Merge branch 'main' into source_wise_interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
hammannr authored Oct 17, 2024
2 parents 15c8405 + 8967ac0 commit 2926fba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions alea/submitters/htcondor.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,13 +391,14 @@ def make_tarballs(self):
"""Make tarballs of Ax-based packages if they are in editable user-installed mode."""
tarballs = []
tarball_paths = []
for package_name in ["alea"]:
for package_name in ["alea", "blueice"]:
_tarball = Tarball(self.generated_dir, package_name)
if not Tarball.get_installed_git_repo(package_name):
# Packages should not be non-editable user-installed
if Tarball.is_user_installed(package_name):
raise RuntimeError(
f"You should install {package_name} in non-editable user-installed mode."
f"You should not install {package_name} in "
"non-editable user-installed mode."
)
else:
_tarball.create_tarball()
Expand Down
2 changes: 1 addition & 1 deletion alea/submitters/run_toymc_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ SEED=$(echo "$seed" | sed "s/'/\"/g")
METADATA=$(echo "$metadata" | sed "s/'/\"/g")

# Installing customized packages
. install.sh alea
. install.sh alea blueice

# Extract tarballs input
mkdir -p templates
Expand Down

0 comments on commit 2926fba

Please sign in to comment.