File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,13 @@ Can be installed via `pip`: `pip install codeflare-sdk`
22
22
23
23
We recommend using Python 3.9 for development.
24
24
Install dependencies: ` poetry install `
25
- This will install all requirements as specified in the poetry.lock file.
25
+ This will install standard requirements as specified in the poetry.lock file. Test and docs dependencies are optional.
26
+
27
+ To include test dependencies run: ` poetry install --with test `
28
+
29
+ To include docs dependencies run: ` poetry instal --with docs `
30
+
31
+ To include test and docs dependencies run: ` poetry install --with test,docs `
26
32
27
33
If you require a requirements.txt file you can run:
28
34
Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ optional = true
36
36
[tool .poetry .group .docs .dependencies ]
37
37
pdoc3 = " 0.10.0"
38
38
39
+ [tool .poetry .group .test ]
40
+ optional = true
41
+
39
42
[tool .poetry .group .test .dependencies ]
40
43
pytest = " 7.4.0"
41
44
coverage = " 7.2.7"
You can’t perform that action at this time.
0 commit comments