Skip to content

Commit

Permalink
Add rename warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Apr 1, 2023
1 parent b1ff783 commit 972ceea
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/django_idom/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
from logging import getLogger

from django_idom import components, decorators, hooks, types, utils
from django_idom.websocket.paths import IDOM_WEBSOCKET_PATH


__version__ = "3.0.0"
logger = getLogger(__name__)

print("WARNING: django-idom has been renamed to reactpy-django.")
logger.warning("django-idom has been renamed to reactpy-django.")

__version__ = "3.0.1"
__all__ = [
"IDOM_WEBSOCKET_PATH",
"hooks",
Expand Down

0 comments on commit 972ceea

Please sign in to comment.