File tree 2 files changed +3
-7
lines changed
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -62,16 +62,17 @@ For more instructions see the [Pull request checklist](#pull-request-checklist)
62
62
Install the package (in editable mode) and its development dependencies:
63
63
64
64
```bash
65
- pip install -e .
65
+ pip install --no-deps - e .
66
66
```
67
67
68
68
Install development dependencies
69
69
70
- ```
70
+ ```bash
71
71
pip install ' causalpy[dev]'
72
72
pip install ' causalpy[docs]'
73
73
pip install ' causalpy[test]'
74
74
pip install ' causalpy[lint]'
75
+ pip install ' pylint'
75
76
```
76
77
77
78
It may also be necessary to [install](https://pandoc.org/installing.html) `pandoc`. On a mac, run `brew install pandoc`.
Original file line number Diff line number Diff line change 4
4
python -m pip install -e .
5
5
6
6
lint :
7
- pip install causalpy[lint]
8
7
ruff check --fix .
9
8
ruff format .
10
9
11
10
check_lint :
12
- pip install causalpy[lint]
13
11
ruff check .
14
12
ruff format --diff --check .
15
13
nbqa black --check .
16
14
nbqa ruff .
17
15
interrogate .
18
16
19
17
doctest :
20
- pip install causalpy[test]
21
18
pytest --doctest-modules --ignore=causalpy/tests/ causalpy/
22
19
23
20
test :
24
- pip install causalpy[test]
25
21
pytest
26
22
27
23
uml :
28
- pip install pylint
29
24
pyreverse -o png causalpy --output-directory docs/source/_static --ignore tests
You can’t perform that action at this time.
0 commit comments