Skip to content
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
1 change: 0 additions & 1 deletion petab/v1/problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@ def get_path(filename):
f"{yaml_config[FORMAT_VERSION]}."
)
if major_version == 2:
warn("Support for PEtab2.0 is experimental!", stacklevel=2)
warn(
"Using petab.v1.Problem with PEtab2.0 is deprecated. "
"Use petab.v2.Problem instead.",
Expand Down
8 changes: 0 additions & 8 deletions petab/v2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,6 @@
Contains all functionality related to handling PEtab 2.0 problems.
"""

from warnings import warn

warn(
"Support for PEtab2.0 and all of petab.v2 is experimental "
"and subject to changes!",
stacklevel=1,
)

# TODO: move this module to v2
from petab.v1.mapping import ( # noqa: F403, F401, E402
get_mapping_df,
Expand Down
2 changes: 0 additions & 2 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,5 @@ filterwarnings =
error
# TODO: until tests are reorganized for petab.v1
ignore::DeprecationWarning
ignore:Support for PEtab2.0 and all of petab.v2 is experimental:UserWarning
ignore:Support for PEtab2.0 is experimental:UserWarning
ignore:.*inspect.getargspec\(\) is deprecated.*:DeprecationWarning
ignore:.*Passing unrecognized arguments to super\(PyDevIPCompleter6\).*:DeprecationWarning