You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# py-actions/py-dependency-install GitHub Action
2
2
3
-
This GitHub Action installs Python package dependencies from a user-defined `requirements.txt` file path with optional `pip`, `setuptools`, and `wheel` installs/updates during execution. A Python package environment report is displayed at the end of Action execution.
3
+
This GitHub Action installs Python package dependencies from a user-defined `requirements.txt` file path with `pip`, `setuptools`, and `wheel` installs/updates during execution. A Python package environment report is displayed at the end of Action execution.
4
4
5
5
## Inputs
6
6
@@ -14,11 +14,11 @@ This GitHub Action installs Python package dependencies from a user-defined `req
14
14
15
15
### `update-setuptools`
16
16
17
-
**Optional** A boolean string indicating that a `setuptools` package update should occur before the dependency installation. Options: [`"true"`, `"false"`]. Default=`"false"`
17
+
**Optional** A boolean string indicating that a `setuptools` package update should occur before the dependency installation. Options: [`"true"`, `"false"`]. Default=`"true"`
18
18
19
19
### `update-wheel`
20
20
21
-
**Optional** A boolean string indicating that a `wheel` package update should occur before the dependency installation. Options: [`"true"`, `"false"`]. Default=`"false"`
21
+
**Optional** A boolean string indicating that a `wheel` package update should occur before the dependency installation. Options: [`"true"`, `"false"`]. Default=`"true"`
22
22
23
23
## Outputs
24
24
@@ -32,27 +32,27 @@ Uses path `requirements.txt` and updates `pip` before the install.
32
32
33
33
```yaml
34
34
- name: Install Python dependencies
35
-
uses: py-actions/py-dependency-install@v1
35
+
uses: py-actions/py-dependency-install@v2
36
36
```
37
37
38
38
### Disable `pip` update before install
39
39
40
40
```yaml
41
41
- name: Install Python dependencies
42
-
uses: py-actions/py-dependency-install@v1
42
+
uses: py-actions/py-dependency-install@v2
43
43
with:
44
44
update-pip: "false"
45
45
```
46
46
47
-
### Configure `setuptools` and `wheel` installs/updates
47
+
### Toggle `pip`, `setuptools`, and `wheel` installs/updates off
0 commit comments