File tree Expand file tree Collapse file tree 2 files changed +17
-10
lines changed Expand file tree Collapse file tree 2 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,15 @@ pip install -e .
25
25
4 . Install development dependencies
26
26
27
27
```
28
- pip install -r requirements-dev.txt
29
- pip install -r requirements-docs.txt
28
+ pip install causalpy[dev]
29
+ pip install causalpy[docs]
30
+ ```
31
+
32
+ If that fails, try:
33
+
34
+ ```
35
+ pip install 'causalpy[dev]'
36
+ pip install 'causalpy[docs]'
30
37
```
31
38
32
39
It may also be necessary to [ install] ( https://pandoc.org/installing.html ) ` pandoc ` . On a mac, I run ` brew install pandoc ` .
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ dependencies = [
32
32
" numpy" ,
33
33
" pandas" ,
34
34
" patsy" ,
35
- " pymc>=4 .0.0" ,
35
+ " pymc>=5 .0.0" ,
36
36
" scikit-learn>=1" ,
37
37
" scipy" ,
38
38
" seaborn>=0.11.2" ,
@@ -42,7 +42,7 @@ dependencies = [
42
42
# List additional groups of dependencies here (e.g. development dependencies). Users
43
43
# will be able to install these using the "extras" syntax, for example:
44
44
#
45
- # $ pip install sampleproject [dev]
45
+ # $ pip install causalpy [dev]
46
46
#
47
47
# Similar to `dependencies` above, these must be valid existing projects.
48
48
[project .optional-dependencies ]
@@ -63,12 +63,12 @@ docs = ["ipykernel",
63
63
" sphinx-rtd-theme" ,
64
64
" statsmodels" ,
65
65
]
66
- lint = [" black>=22.3.0 " ,
67
- " flake8>=4.0.1 " ,
68
- " interrogate>=1.5.0 " ,
69
- " isort>=5.10.1 " ,
70
- " nbqa>=1.5.3 " ,
71
- " pre-commit>=2.19. "
66
+ lint = [" black" ,
67
+ " flake8" ,
68
+ " interrogate" ,
69
+ " isort" ,
70
+ " nbqa" ,
71
+ " pre-commit"
72
72
]
73
73
test = [
74
74
" pytest" ,
You can’t perform that action at this time.
0 commit comments