diff --git a/docs/examples/display_column_description.py b/docs/examples/display_column_description.py index 2a98bd9..e2673e1 100644 --- a/docs/examples/display_column_description.py +++ b/docs/examples/display_column_description.py @@ -1,7 +1,7 @@ import pandas as pd from IPython.core.display_functions import DisplayHandle from IPython.display import display -from safeds.data.tabular import Table +from safeds.data.tabular.containers import Table def display_column_descriptions(column_descriptions: Table) -> DisplayHandle: diff --git a/poetry.lock b/poetry.lock index caf4392..8ed3547 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2827,14 +2827,14 @@ files = [ [[package]] name = "safe-ds" -version = "0.2.0" +version = "0.4.0" description = "A user-friendly library for Data Science in Python." category = "main" optional = false python-versions = ">=3.10,<4.0" files = [ - {file = "safe_ds-0.2.0-py3-none-any.whl", hash = "sha256:d0fd659943fa57501af60dd0d2218851fc440eae7aed2c085388d1e597fdf99c"}, - {file = "safe_ds-0.2.0.tar.gz", hash = "sha256:7dfee2ef9a3c0d533e7e28dfd9c7ed9c8ad2457b024085cce299fae7594f3fd2"}, + {file = "safe_ds-0.4.0-py3-none-any.whl", hash = "sha256:cbe29d94e6917828c088084b2732ce68964cc0a15b7de14c6f01d51e43cd2785"}, + {file = "safe_ds-0.4.0.tar.gz", hash = "sha256:faa9360f7394fc17acdfb1dbe488135d8629045e5e8ad1a302f8fdf553ee3a24"}, ] [package.dependencies] @@ -3275,4 +3275,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "40521ed23cfcc9ceda597918472319ba75dd2e7db4644e6519aeb4660e3ef866" +content-hash = "0e81e44776806b751111a20c807f215440a88e76ff441b1df5e671ace42cbd91" diff --git a/pyproject.toml b/pyproject.toml index fd87546..b98b07d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ packages = [ [tool.poetry.dependencies] python = "^3.10" -safe-ds = "^0.2.0" +safe-ds = ">=0.4,<0.5" [tool.poetry.group.dev.dependencies] pytest = "^7.2.1" diff --git a/src/safeds_examples/tabular/_house_sales/_house_sales.py b/src/safeds_examples/tabular/_house_sales/_house_sales.py index 927274b..81a8978 100644 --- a/src/safeds_examples/tabular/_house_sales/_house_sales.py +++ b/src/safeds_examples/tabular/_house_sales/_house_sales.py @@ -1,6 +1,6 @@ import os -from safeds.data.tabular import Table +from safeds.data.tabular.containers import Table _path = os.path.join(os.path.dirname(__file__), "data", "house_sales.csv") diff --git a/src/safeds_examples/tabular/_titanic/_titanic.py b/src/safeds_examples/tabular/_titanic/_titanic.py index 4fd5bb6..52d4cc9 100644 --- a/src/safeds_examples/tabular/_titanic/_titanic.py +++ b/src/safeds_examples/tabular/_titanic/_titanic.py @@ -1,6 +1,6 @@ import os -from safeds.data.tabular import Table +from safeds.data.tabular.containers import Table _path = os.path.join(os.path.dirname(__file__), "data", "titanic.csv") diff --git a/tests/safeds_examples/tabular/_house_sales/test_house_sales.py b/tests/safeds_examples/tabular/_house_sales/test_house_sales.py index ad83bb3..b320f29 100644 --- a/tests/safeds_examples/tabular/_house_sales/test_house_sales.py +++ b/tests/safeds_examples/tabular/_house_sales/test_house_sales.py @@ -1,5 +1,5 @@ import pytest -from safeds.data.tabular import Table +from safeds.data.tabular.containers import Table from safeds.data.tabular.typing import FloatColumnType, IntColumnType, TableSchema from safeds_examples.tabular import describe_house_sales_columns, load_house_sales diff --git a/tests/safeds_examples/tabular/_titanic/test_titanic.py b/tests/safeds_examples/tabular/_titanic/test_titanic.py index 5d5925f..fd3be72 100644 --- a/tests/safeds_examples/tabular/_titanic/test_titanic.py +++ b/tests/safeds_examples/tabular/_titanic/test_titanic.py @@ -1,5 +1,5 @@ import pytest -from safeds.data.tabular import Table +from safeds.data.tabular.containers import Table from safeds.data.tabular.typing import ( FloatColumnType, IntColumnType,