Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Add on-import deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
willGraham01 committed Nov 22, 2023
1 parent 60dd867 commit 7c9f868
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/cellfinder_core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
from warnings import warn

warn(
f"cellfinder-core has merged with it's napari plugin and is now available as a combined package. To remain up to date, please install cellfinder: https://github.com/brainglobe/cellfinder",
DeprecationWarning,
)

from importlib.metadata import PackageNotFoundError, version

try:
Expand Down

0 comments on commit 7c9f868

Please sign in to comment.