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

Commit

Permalink
feat: compatibility with safe-ds v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Mar 26, 2023
1 parent f2448d8 commit 30ea53d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/examples/display_column_description.py
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ packages = [

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

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
Expand Down
2 changes: 1 addition & 1 deletion src/safeds_examples/tabular/_house_sales/_house_sales.py
Original file line number Diff line number Diff line change
@@ -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")

Expand Down
2 changes: 1 addition & 1 deletion src/safeds_examples/tabular/_titanic/_titanic.py
Original file line number Diff line number Diff line change
@@ -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")

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/safeds_examples/tabular/_titanic/test_titanic.py
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 30ea53d

Please sign in to comment.