Skip to content

Commit

Permalink
Merge pull request #132 from neptune-ai/pg/fix
Browse files Browse the repository at this point in the history
pg/fix
  • Loading branch information
PatrykGala authored Nov 27, 2024
2 parents b0e2661 + dcdfc34 commit ed2859b
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/neptune_fetcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"ReadOnlyRun",
]

import logging
from importlib.metadata import (
PackageNotFoundError,
version,
Expand All @@ -44,24 +43,5 @@
except PackageNotFoundError:
pass

try:
version("neptune")
logger = logging.getLogger(__name__)
logger.warning(
"""You have `neptune` installed. The package is no longer a dependency and causes conflicts.
Uninstall it before using `neptune-fetcher`:
pip uninstall neptune
If you're using `uv`:
uv pip uninstall neptune
"""
)
except PackageNotFoundError:
pass

from .read_only_project import ReadOnlyProject
from .read_only_run import ReadOnlyRun

0 comments on commit ed2859b

Please sign in to comment.