Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated poetry lock based on version 1.1.0 #244

Merged
merged 3 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [1.1.0](changes_1.1.0.md)
* [1.0.0](changes_1.0.0.md)
* [0.21.0](changes_0.21.0.md)
* [0.20.0](changes_0.20.0.md)
Expand Down
15 changes: 15 additions & 0 deletions doc/changes/changes_1.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Script-Languages-Container-Tool 1.1.0, released t.b.d.

Code name: t.b.d.

## Summary

t.b.d.

## Features

n/a

## Refactoring

n/a
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ def _copy_cache_file_to_output_path(
file_name = (
f"""{self.get_flavor_name()}_{self.release_goal}{suffix}.tar.gz"""
)
output_file = Path(self.export_path, file_name)
output_file = Path(str(self.export_path), file_name)
output_checksum_file = Path(
self.export_path, file_name + "." + CHECKSUM_ALGORITHM
str(self.export_path), file_name + "." + CHECKSUM_ALGORITHM
)
if not output_file.exists() or not output_checksum_file.exists() or is_new:
output_file.parent.mkdir(exist_ok=True, parents=True)
Expand Down
4 changes: 2 additions & 2 deletions exasol/slc/internal/tasks/test/run_db_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def handle_test_result(self, exit_code: int, test_output_file: Path) -> None:
)

result = RunDBTestResult(
test_file=self.test_file,
language=self.language,
test_file=str(self.test_file),
language=str(self.language),
is_test_ok=is_test_ok,
test_output_file=test_output_file,
)
Expand Down
2 changes: 1 addition & 1 deletion exasol/slc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# Do not edit this file manually!
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
MAJOR = 1
MINOR = 0
MINOR = 1
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
380 changes: 193 additions & 187 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-script-languages-container-tool"
version = "1.0.0"
version = "1.1.0"
description = "Script Languages Container Tool"

license = "MIT"
Expand Down
Loading