2019-05-27 17:27:24 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import sys
|
2020-02-10 16:27:47 +00:00
|
|
|
import logging
|
2019-05-27 17:27:24 +00:00
|
|
|
|
2020-02-10 16:27:47 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2019-05-27 17:27:24 +00:00
|
|
|
|
2020-02-10 16:27:47 +00:00
|
|
|
|
|
|
|
logger.error("DEPRECATED installation detected, please run `pip install -e .` again.")
|
|
|
|
|
|
|
|
sys.exit(2)
|