From 78b686c9d0efcd90d557b42ef23ca0b9931bc98b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Wed, 25 Sep 2024 08:24:15 +0100 Subject: [PATCH] imports --- pytorch_forecasting/utils/_maint/_show_versions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytorch_forecasting/utils/_maint/_show_versions.py b/pytorch_forecasting/utils/_maint/_show_versions.py index c10877a5..1d8a803f 100644 --- a/pytorch_forecasting/utils/_maint/_show_versions.py +++ b/pytorch_forecasting/utils/_maint/_show_versions.py @@ -79,10 +79,10 @@ def _get_deps_info(deps=None, source="distributions"): of the import as present in the current python environment """ if deps is None: - deps = ["sktime"] + deps = ["pytorch-forecasting"] if source == "distributions": - from sktime.utils.dependencies._dependencies import _get_installed_packages + from pytorch_forecasting.utils._dependencies import _get_installed_packages KEY_ALIAS = {"sklearn": "scikit-learn", "skbase": "scikit-base"}