Skip to content

Commit

Permalink
#125 pinned script languages release to tag 8.2.0 (#135)
Browse files Browse the repository at this point in the history
fixes #125
  • Loading branch information
tomuben authored Sep 6, 2024
1 parent c66d2e6 commit 63a755a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions doc/changes/changes_0.3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@
* #133: Fixed the following defects:
- Using the `allow_override` option when deploying a language container.
- Storing internal bucket-fs host and port in a bucket-fs connection object.

## Refactoring

* 125: Pin Script-Language-Release repository to tag 8.2.0
4 changes: 3 additions & 1 deletion exasol/nb_connector/slct_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

PipPackageDefinition = namedtuple('PipPackageDefinition', ['pkg', 'version'])

SLC_RELEASE_TAG = "8.2.0"

class SlcDir:
def __init__(self, secrets: Secrets):
Expand Down Expand Up @@ -121,7 +122,8 @@ def clone_slc_repo(self):
"""
if not self.slc_dir.root_dir.is_dir():
logging.info(f"Cloning into {self.slc_dir}...")
repo = Repo.clone_from("https://github.com/exasol/script-languages-release", self.slc_dir.root_dir)
repo = Repo.clone_from("https://github.com/exasol/script-languages-release", self.slc_dir.root_dir,
branch=SLC_RELEASE_TAG)
logging.info("Fetching submodules...")
repo.submodule_update(recursive=True)
else:
Expand Down

0 comments on commit 63a755a

Please sign in to comment.