Skip to content

Commit

Permalink
Bug/fix download url for slc file (#205)
Browse files Browse the repository at this point in the history
* Fixed download URL of SLC from GitHub releases
  • Loading branch information
ckunki authored Nov 4, 2024
1 parent 4105f3b commit a79d4a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Changelog

* [0.1.1](changes_0.1.1.md)
* [0.1.0](changes_0.1.0.md)
7 changes: 7 additions & 0 deletions doc/changes/changes_0.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# advanced-analytics-framework 0.1.1, released ????-??-??

Code name:

## Summary

* #206: Fixed download URL of SLC from GitHub releases
2 changes: 1 addition & 1 deletion exasol_advanced_analytics_framework/slc.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
LANGUAGE_ALIAS = "PYTHON3_AAF"
SLC_NAME = "exasol_advanced_analytics_framework_container"
SLC_FILE_NAME = SLC_NAME + "_release.tar.gz"
SLC_URL_FORMATTER = "https://github.com/exasol/advanced_analytics_framework/releases/download/{version}/" + SLC_FILE_NAME
SLC_URL_FORMATTER = "https://github.com/exasol/advanced-analytics-framework/releases/download/{version}/" + SLC_FILE_NAME


@contextmanager
Expand Down

0 comments on commit a79d4a9

Please sign in to comment.