24 lines
681 B
Python
24 lines
681 B
Python
"""
|
|
This is here temporarily, for backwards compatability purposes
|
|
It should be removed in the future, and you should replace any imports
|
|
like:
|
|
from my.reddit import ...
|
|
to:
|
|
from my.reddit.all import ...
|
|
since that allows for easier overriding using namespace packages
|
|
https://github.com/karlicoss/HPI/issues/102
|
|
"""
|
|
|
|
# For now, including this here, since importing the module
|
|
# causes .rexport to be imported, which requires rexport
|
|
REQUIRES = [
|
|
'git+https://github.com/karlicoss/rexport',
|
|
]
|
|
|
|
from my.core import warnings as W
|
|
|
|
# TODO: add link to instructions to migrate
|
|
W.high("DEPRECATED! Instead of my.reddit, import from my.reddit.all instead.")
|
|
|
|
|
|
from .rexport import *
|