File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 4
4
import causalpy .pymc_models
5
5
import causalpy .skl_experiments
6
6
import causalpy .skl_models
7
+ from causalpy .version import __version__
7
8
8
9
from .data import load_data
9
10
Original file line number Diff line number Diff line change 1
- __version__ = "0.0.3 "
1
+ __version__ = "0.0.3b "
Original file line number Diff line number Diff line change 1
- include requirements.txt
2
1
include *.md *.rst
3
- include requirements.txt
4
2
include LICENSE
3
+ include requirements.txt
Original file line number Diff line number Diff line change @@ -15,8 +15,9 @@ def get_long_description():
15
15
16
16
17
17
# get version
18
- sys .path .insert (0 , os .path .abspath ("../" ))
19
- from causalpy .version import __version__
18
+ # sys.path.insert(0, os.path.abspath("../"))
19
+ # from causalpy.version import __version__
20
+ exec (open ("causalpy/version.py" ).read ())
20
21
21
22
with open (REQUIREMENTS_FILE ) as f :
22
23
install_reqs = f .read ().splitlines ()
You can’t perform that action at this time.
0 commit comments