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

feat: compatibility with safe-ds v0.4.0 #36

Merged
merged 3 commits into from
Mar 26, 2023
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
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
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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"
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