File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 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)
6262 Install the package (in editable mode) and its development dependencies:
6363
6464 ```bash
65- pip install -e .
65+ pip install --no-deps - e .
6666 ```
6767
6868 Install development dependencies
6969
70- ```
70+ ```bash
7171 pip install ' causalpy[dev]'
7272 pip install ' causalpy[docs]'
7373 pip install ' causalpy[test]'
7474 pip install ' causalpy[lint]'
75+ pip install ' pylint'
7576 ```
7677
7778 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 44 python -m pip install -e .
55
66lint :
7- pip install causalpy[lint]
87 ruff check --fix .
98 ruff format .
109
1110check_lint :
12- pip install causalpy[lint]
1311 ruff check .
1412 ruff format --diff --check .
1513 nbqa black --check .
1614 nbqa ruff .
1715 interrogate .
1816
1917doctest :
20- pip install causalpy[test]
2118 pytest --doctest-modules --ignore=causalpy/tests/ causalpy/
2219
2320test :
24- pip install causalpy[test]
2521 pytest
2622
2723uml :
28- pip install pylint
2924 pyreverse -o png causalpy --output-directory docs/source/_static --ignore tests
You can’t perform that action at this time.
0 commit comments