Skip to content
This repository was archived by the owner on Nov 23, 2024. It is now read-only.

Commit fe449d2

Browse files
committed
fix: compatibility with safe-ds v0.4.0
1 parent f2448d8 commit fe449d2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packages = [
1414

1515
[tool.poetry.dependencies]
1616
python = "^3.10"
17-
safe-ds = ">=0.2,<0.5"
17+
safe-ds = ">=0.4,<0.5"
1818

1919
[tool.poetry.group.dev.dependencies]
2020
pytest = "^7.2.1"

src/safeds_examples/tabular/_house_sales/_house_sales.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
from safeds.data.tabular import Table
3+
from safeds.data.tabular.containers import Table
44

55
_path = os.path.join(os.path.dirname(__file__), "data", "house_sales.csv")
66

src/safeds_examples/tabular/_titanic/_titanic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
from safeds.data.tabular import Table
3+
from safeds.data.tabular.containers import Table
44

55
_path = os.path.join(os.path.dirname(__file__), "data", "titanic.csv")
66

tests/safeds_examples/tabular/_house_sales/test_house_sales.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pytest
2-
from safeds.data.tabular import Table
2+
from safeds.data.tabular.containers import Table
33
from safeds.data.tabular.typing import FloatColumnType, IntColumnType, TableSchema
44
from safeds_examples.tabular import describe_house_sales_columns, load_house_sales
55

tests/safeds_examples/tabular/_titanic/test_titanic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pytest
2-
from safeds.data.tabular import Table
2+
from safeds.data.tabular.containers import Table
33
from safeds.data.tabular.typing import (
44
FloatColumnType,
55
IntColumnType,

0 commit comments

Comments
 (0)