Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

feat: show deprecation warning #124

Merged
merged 3 commits into from
Dec 5, 2023
Merged
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions lib/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ def has_required_env_vars():


def main():
print("deprecation warning: Dash Sentinel is deprecated and should be uninstalled. See https://github.com/dashpay/sentinel for details.")
sys.exit(1)
UdjinM6 marked this conversation as resolved.
Show resolved Hide resolved

install_instructions = "\tpip install -r requirements.txt"

if not is_valid_python_version():
Expand Down
Loading