faf19eda86
Note: This should not be relevant anymore - this binary has been deprecated and is not being used by new installations since July 2019.
12 lines
190 B
Python
Executable File
12 lines
190 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
logger.error("DEPRECATED installation detected, please run `pip install -e .` again.")
|
|
|
|
sys.exit(2)
|