Skip to content

Commit

Permalink
feat: compatibility with safe-ds v0.10.0 (#49)
Browse files Browse the repository at this point in the history
### Summary of Changes

Integrate API changes of [`safe-ds`
v0.10.0](https://github.com/Safe-DS/Stdlib/releases/tag/v0.10.0).
  • Loading branch information
lars-reimann authored Apr 13, 2023
1 parent 39e3403 commit 4f7d3b8
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 41 deletions.
107 changes: 69 additions & 38 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.8,<0.10"
safe-ds = ">=0.8,<0.11"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
Expand Down
2 changes: 1 addition & 1 deletion src/safeds_examples/tabular/containers/_example_table.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from safeds.data.tabular.containers import Table
from safeds.exceptions import UnknownColumnNameError
from safeds.data.tabular.exceptions import UnknownColumnNameError


class ExampleTable(Table):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest
from safeds.data.tabular.containers import Column, Table
from safeds.exceptions import UnknownColumnNameError
from safeds.data.tabular.exceptions import UnknownColumnNameError
from safeds_examples.tabular.containers import ExampleTable


Expand Down

0 comments on commit 4f7d3b8

Please sign in to comment.